1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-17 19:19:23 +01:00

62 lines
1.7 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
2023-09-13 19:58:39 +05:30
npm install -g node-gyp
2022-12-22 17:40:23 +05:30
npm install
2023-09-13 19:58:39 +05:30
rm -rf node_modules/sharp
SHARP_IGNORE_GLOBAL_LIBVIPS=1 npm install --arch=x64 --platform=linux --libc=glibc --build-from-source sharp
./node_modules/.bin/electron-rebuild
2022-12-22 17:40:23 +05:30
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
2023-09-13 19:58:39 +05:30
./node_modules/.bin/electron-rebuild
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
2023-09-13 19:58:39 +05:30
rm -rf node_modules/sharp
npm install --platform=darwin --arch=x64 sharp
npm rebuild --platform=darwin --arch=arm64 sharp
./node_modules/.bin/electron-rebuild
2022-09-30 12:30:23 +02:00
npm run publish-win-app