Skip to content

Export dist/ as artifact #4

Export dist/ as artifact

Export dist/ as artifact #4

Workflow file for this run

name: Packages build
on:
push:
branches:
- feature/up-focus
- release
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
# - windows-latest
# - ubuntu-latest
fail-fast: false
steps:
- name: run on linux
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install libarchive-tools
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.15.0'
- run: npm install npm@9 -g
- run: npm install
- run: node_modules/.bin/electron-builder build
env:
GH_TOKEN: ${{ secrets.github_token }}
USE_HARD_LINKS: 'false'
- name: Archive dmg
uses: actions/upload-artifact@v3
with:
name: dist
path: |
dist