Skip to content

installing wine

installing wine #15

Workflow file for this run

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 apt update && 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