WPDL-Electron Build Artifacts #20
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: WPDL-Electron Build Artifacts | |
on: | |
workflow_dispatch: | |
env: | |
NODE_JS_VERSION: 23.1.0 | |
jobs: | |
test: | |
name: Build artifacts for ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ env.NODE_JS_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_JS_VERSION }} | |
cache: 'npm' | |
- run: npm install | |
# OS-specific builds | |
- name: Install Snapcraft for Linux | |
if: matrix.os == 'ubuntu-latest' | |
uses: samuelmeuli/action-snapcraft@v3 | |
- name: Build Linux | |
if: matrix.os == 'ubuntu-latest' | |
run: npm run build:linux | |
- name: Build MacOS | |
if: matrix.os == 'macOs-latest' | |
run: npm run build:mac | |
- name: Build Windows | |
if: matrix.os == 'windows-latest' | |
run: npm run build:win | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
draft: true | |
files: | | |
dist/*.exe | |
dist/*.msi | |
dist/*.zip | |
dist/*.7z | |
dist/*.AppImage | |
dist/*.snap | |
dist/*.deb | |
dist/*.rpm | |
dist/*.tar.gz | |
dist/*.yml | |
dist/*.blockmap | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |