-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add semantic-release to CI (#113)
- Loading branch information
1 parent
a8dd692
commit 705d0a4
Showing
2 changed files
with
143 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
name: Build and Release Electron App | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build-macos: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '20.8.1' | ||
- name: Install dependencies | ||
run: yarn install | ||
- name: Build Electron app for macOS | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
run: yarn dist --mac | ||
- name: Upload macOS build artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: electron-app-macos | ||
path: dist/*.dmg | ||
|
||
build-windows: | ||
runs-on: windows-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '20.8.1' | ||
- name: Install dependencies | ||
run: yarn install | ||
- name: Build Electron app for Windows | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
run: yarn dist --win | ||
- name: Upload Windows build artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: electron-app-windows | ||
path: dist/*.exe | ||
|
||
build-linux: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '20.8.1' | ||
- name: Install dependencies | ||
run: yarn install | ||
- name: Build Electron app for Linux | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_TOKEN }} | ||
run: yarn dist --linux | ||
- name: Upload Linux build artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: electron-app-linux | ||
path: dist/*.AppImage | ||
|
||
release: | ||
needs: [build-macos, build-windows, build-linux] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20.8.1' | ||
- name: Clear npm cache | ||
run: npm cache clean --force | ||
- name: Download macOS build artifacts | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: electron-app-macos | ||
path: dist/macos | ||
- name: Download Windows build artifacts | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: electron-app-windows | ||
path: dist/windows | ||
- name: Download Linux build artifacts | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: electron-app-linux | ||
path: dist/linux | ||
- name: Run semantic-release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
run: yarn release |
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