1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-17 19:19:23 +01:00
2022-09-29 21:12:45 +05:30

49 lines
1.1 KiB
YAML

# name of your github action
name: CI
# this will help you specify where to run
on:
workflow_dispatch:
# this is where the magic happens, each job happens in parallel btw
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.5.0
with:
node-version: 16
- name: Install Modules and Publish build
run: |
npm install
npm run publish-linux-app
macos:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.5.0
with:
node-version: 16
- name: Install Modules and Publish build
run: |
npm install
npm run publish-mac-app
windo:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.5.0
with:
node-version: 16
- name: Install Modules and Publish build
run: |
npm install
npm run publish-win-app