1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-14 18:02:38 +01:00

53 lines
1.2 KiB
YAML
Raw Normal View History

2022-09-29 21:09:09 +05:30
# name of your github action
2023-05-09 15:11:00 +05:30
name: Deploy Release
2022-12-22 17:40:23 +05:30
# this will help you specify where to run
2022-09-29 21:09:09 +05:30
on:
workflow_dispatch:
# this is where the magic happens, each job happens in parallel btw
jobs:
linux:
2023-05-09 15:11:00 +05:30
runs-on: ubuntu-20.04
2022-09-29 21:09:09 +05:30
steps:
2022-12-22 17:40:23 +05:30
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.5.0
with:
node-version: 16
- name: Install Modules and Publish build
run: |
sudo apt-get install elfutils -y
2022-12-23 02:55:15 +05:30
sudo apt install rpm
2022-12-22 17:40:23 +05:30
npm install
GH_TOKEN=${{ secrets.GITHUB_TOKEN }} npm run publish-linux-app
2022-09-29 21:09:09 +05:30
macos:
2023-05-09 15:11:00 +05:30
runs-on: macos-11
2022-12-22 17:40:23 +05:30
steps:
2022-09-29 21:12:45 +05:30
- uses: actions/checkout@v3
2022-12-22 17:40:23 +05:30
2022-09-29 21:12:45 +05:30
- uses: actions/setup-node@v3.5.0
2022-09-29 21:09:09 +05:30
with:
node-version: 16
2022-12-22 17:40:23 +05:30
2022-09-29 21:09:09 +05:30
- name: Install Modules and Publish build
run: |
npm install
2022-09-30 12:30:23 +02:00
GH_TOKEN=${{ secrets.GITHUB_TOKEN }} npm run publish-mac-app
2022-12-22 17:40:23 +05:30
2022-09-30 12:30:23 +02:00
windows:
2022-12-22 17:40:23 +05:30
runs-on: windows-latest
steps:
2022-09-29 21:12:45 +05:30
- uses: actions/checkout@v3
2022-12-22 17:40:23 +05:30
2022-09-29 21:12:45 +05:30
- uses: actions/setup-node@v3.5.0
2022-09-29 21:09:09 +05:30
with:
node-version: 16
2022-12-22 17:40:23 +05:30
2022-09-29 21:09:09 +05:30
- name: Install Modules and Publish build
2022-09-30 12:30:23 +02:00
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2022-09-29 21:09:09 +05:30
run: |
npm install
2022-09-30 12:30:23 +02:00
npm run publish-win-app