[chnage] update packages version #373
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: | |
push: | |
branches: | |
- main | |
jobs: | |
release: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# os: [windows-latest, macos-latest, ubuntu-latest] | |
os: [windows-latest, ubuntu-latest] | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
- name: Install Node.js 18.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18.18.0 | |
cache: 'yarn' | |
- name: Build/release Electron app | |
uses: samuelmeuli/[email protected] | |
with: | |
# GitHub token, automatically provided to the action | |
# (No need to define this secret in the repo settings) | |
github_token: ${{ secrets.access_token }} | |
# build_script_name: 'electron:prebuild' | |
# If the commit is tagged with a version (e.g. "v1.0.0"), | |
# release the app after building | |
release: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
- name: Upload Artifact (macOS) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: zyplayer-mac | |
path: ./dist/*-mac-*.dmg | |
if-no-files-found: ignore | |
- name: Upload Artifact (Windows) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: zyplayer-win | |
path: ./dist/*-win-*.exe | |
if-no-files-found: ignore | |
- name: Upload Artifact (Linux AppImage) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: zyplayer-linux-appimage | |
path: ./dist/*.AppImage | |
if-no-files-found: ignore | |
- name: Upload Artifact (Linux deb) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: zyplayer-linux-deb | |
path: ./dist/*.deb | |
if-no-files-found: ignore | |
- name: Upload Artifact (Linux rpm) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: zyplayer-linux-rpm | |
path: ./dist/*.rpm | |
if-no-files-found: ignore |