Skip to content

Move to redux

Move to redux #5

Workflow file for this run

name: Publish
on:
push:
branches:
- main
jobs:
publish:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout git repo
uses: actions/checkout@v3
- name: Install Node and NPM
uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- name: Install and build
run: |
npm install
npm run postinstall
npm run build
- name: Publish releases
env:
# These values are used for auto updates signing
# APPLE_ID: ${{ secrets.APPLE_ID }}
# APPLE_ID_PASS: ${{ secrets.APPLE_ID_PASS }}
# CSC_LINK: ${{ secrets.CSC_LINK }}
# CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
# This is used for uploading release assets to github
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
npm exec electron-builder -- --publish never
- name: Upload AppImage artifact
uses: actions/upload-artifact@v3
if: contains(matrix.os, 'ubuntu')
with:
name: stracciatella-toolset-linux-appimage
if-no-files-found: error
path: |
release/build/*.AppImage
- name: Upload Windows installer artifact
uses: actions/upload-artifact@v3
if: contains(matrix.os, 'windows')
with:
name: stracciatella-toolset-windows-exe
if-no-files-found: error
path: |
release/build/*.exe
- name: Upload macOS dmg artifact
uses: actions/upload-artifact@v3
if: contains(matrix.os, 'macos')
with:
name: stracciatella-toolset-macos-dmg
if-no-files-found: error
path: |
release/build/*.dmg