2022-09-29 17:39:09 +02:00
|
|
|
# name of your github action
|
2023-05-09 11:41:00 +02:00
|
|
|
name: Deploy Release
|
2022-12-22 13:10:23 +01:00
|
|
|
# this will help you specify where to run
|
2022-09-29 17:39:09 +02:00
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
# this is where the magic happens, each job happens in parallel btw
|
|
|
|
jobs:
|
|
|
|
linux:
|
2023-05-09 11:41:00 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2022-09-29 17:39:09 +02:00
|
|
|
steps:
|
2022-12-22 13:10:23 +01:00
|
|
|
- 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-22 22:25:15 +01:00
|
|
|
sudo apt install rpm
|
2022-12-22 13:10:23 +01:00
|
|
|
npm install
|
|
|
|
GH_TOKEN=${{ secrets.GITHUB_TOKEN }} npm run publish-linux-app
|
|
|
|
|
2022-09-29 17:39:09 +02:00
|
|
|
macos:
|
2023-05-09 11:41:00 +02:00
|
|
|
runs-on: macos-11
|
2022-12-22 13:10:23 +01:00
|
|
|
steps:
|
2022-09-29 17:42:45 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-12-22 13:10:23 +01:00
|
|
|
|
2022-09-29 17:42:45 +02:00
|
|
|
- uses: actions/setup-node@v3.5.0
|
2022-09-29 17:39:09 +02:00
|
|
|
with:
|
|
|
|
node-version: 16
|
2022-12-22 13:10:23 +01: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-12-22 13:10:23 +01:00
|
|
|
|
2022-09-30 12:30:23 +02:00
|
|
|
windows:
|
2022-12-22 13:10:23 +01:00
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
2022-09-29 17:42:45 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-12-22 13:10:23 +01:00
|
|
|
|
2022-09-29 17:42:45 +02:00
|
|
|
- uses: actions/setup-node@v3.5.0
|
2022-09-29 17:39:09 +02:00
|
|
|
with:
|
|
|
|
node-version: 16
|
2022-12-22 13:10:23 +01: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
|