Skip to content

Merge branch 'master' of https://github.com/RTUServer/FestivalLauncher #16

Merge branch 'master' of https://github.com/RTUServer/FestivalLauncher

Merge branch 'master' of https://github.com/RTUServer/FestivalLauncher #16

Workflow file for this run

name: Build
on: [ push, workflow_dispatch ]
jobs:
release:
runs-on: ${{ matrix.os }}
permissions:
contents: write
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install Dependencies
run: npm ci
shell: bash
- name: Build
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run dist
shell: bash
- name: Artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}
path: |
dist/*.dmg
dist/*.AppImage
dist/*.exe