1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-24 15:40:21 +01:00
upscayl/.github/workflows/main.yml

56 lines
1.6 KiB
YAML
Raw Normal View History

2022-09-29 17:39:09 +02:00
# 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:
2022-09-29 17:42:45 +02:00
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.5.0
2022-09-29 17:39:09 +02:00
with:
node-version: 16
2022-09-29 17:42:45 +02:00
2022-09-29 17:39:09 +02:00
- name: Install Modules and Publish build
run: |
2022-09-29 17:46:37 +02:00
sudo apt-get install flatpak -y
sudo apt-get install flatpak-builder -y
sudo apt-get install elfutils -y
2022-09-30 12:30:23 +02:00
flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install flathub org.freedesktop.Platform/x86_64/20.08 org.freedesktop.Sdk/x86_64/20.08 org.electronjs.Electron2.BaseApp/x86_64/stable -y
2022-09-29 17:39:09 +02:00
npm install
2022-10-02 16:54:17 +02:00
GH_TOKEN=${{ secrets.GITHUB_TOKEN }} npm run publish-linux-app
2022-09-29 17:39:09 +02:00
macos:
runs-on: macOS-latest
steps:
2022-09-29 17:42:45 +02:00
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.5.0
2022-09-29 17:39:09 +02:00
with:
node-version: 16
2022-09-29 17:42:45 +02:00
2022-09-29 17:39:09 +02:00
- 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-09-29 17:39:09 +02:00
2022-09-30 12:30:23 +02:00
windows:
2022-09-29 17:39:09 +02:00
runs-on: windows-latest
steps:
2022-09-29 17:42:45 +02:00
- uses: actions/checkout@v3
- uses: actions/setup-node@v3.5.0
2022-09-29 17:39:09 +02:00
with:
node-version: 16
2022-09-29 17:42:45 +02:00
2022-09-29 17:39:09 +02:00
- name: Install Modules and Publish build
2022-09-30 12:30:23 +02:00
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2022-09-29 17:39:09 +02:00
run: |
npm install
2022-09-30 12:30:23 +02:00
npm run publish-win-app