Build/release #110
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 | |
on: workflow_dispatch | |
jobs: | |
release: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Install Node.js, NPM and Yarn | |
uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
- name: Build and release with electron-builder | |
run: | | |
export GH_TOKEN=${{ secrets.GITHUB_TOKEN }} | |
yarn | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
yarn dist -c.snap.publish=github | |
elif [ "$RUNNER_OS" == "Windows" ]; then | |
yarn dist | |
elif [ "$RUNNER_OS" == "macOS" ]; then | |
yarn dist -m --x64 --arm64 | |
else | |
echo "$RUNNER_OS not supported" | |
exit 1 | |
fi | |
shell: bash |