aseeeeeeeereeeeee #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build/release Electron app | |
on: | |
push: | |
branches: | |
- deploy-github | |
jobs: | |
release: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install Dependencies | |
run: | | |
npm install --global yarn | |
yarn --version | |
yarn install | |
- name: Install Linux Dependencies | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo dpkg --add-architecture i386 | |
wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add - | |
sudo add-apt-repository ppa:cybermax-dexter/sdl2-backport | |
sudo apt-add-repository "deb https://dl.winehq.org/wine-builds/ubuntu $(lsb_release -cs) main" | |
sudo apt install --install-recommends winehq-stable | |
- name: build-linux | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
yarn run electron:build | |
yarn run electron:build --win nsis msi | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
VUE_APP_SENTRY_DNS: ${{ secrets.VUE_APP_SENTRY_DNS }} | |
- name: build-mac | |
if: matrix.os == 'macos-latest' | |
run: yarn run electron:build | |
env: | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
VUE_APP_SENTRY_DNS: ${{ secrets.VUE_APP_SENTRY_DNS }} | |
- name: release | |
uses: softprops/action-gh-release@v1 | |
with: | |
draft: true | |
repository: manuelernestog/weektodo | |
files: | | |
dist_electron//*.exe | |
dist_electron//*.dmg | |
dist_electron//*.AppImage | |
dist_electron//*.snap | |
dist_electron//*.deb | |
dist_electron//*.rpm | |
dist_electron//*.pkg |