Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TheZoidMaster authored Oct 29, 2024
1 parent 02f1119 commit 539de16
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release
name: Release DevBuild
permissions: write-all

on:
Expand Down Expand Up @@ -35,7 +35,11 @@ jobs:

- name: Run Electron Builder
run: |
pnpm electron-builder --${{ matrix.os }} --publish always
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then
pnpm electron-builder --linux --publish always
else
pnpm electron-builder --win --publish always
fi
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down

0 comments on commit 539de16

Please sign in to comment.