Skip to content

testing agaiiiin

testing agaiiiin #12

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, windows-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: build-linux
if: matrix.os == 'ubuntu-latest'
run: yarn run electron:build
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
- name: build-mac
if: matrix.os == 'macos-latest'
run: yarn run electron:build
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
- name: build-win
if: matrix.os == 'windows-latest'
run: yarn run electron:build
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
- 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