Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SpacingBat3 authored Feb 26, 2021
1 parent d93b0d9 commit be386c6
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,19 @@ jobs:
node-version: 14
- name: Install dependencies
run: npm install
- name: Publish artifacts
- name: Publish artifacts (x64)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run publish:linux
run: npm run publish
- name: Publish artifacts (arm64)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run publish -- -a arm64 --targets "electron-forge-maker-appimage,@electron-forge/maker-deb"
- name: Publish artifacts (armv7l)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run publish -- -a armv7l --targets "electron-forge-maker-appimage,@electron-forge/maker-deb"
- name: Publish artifacts (ia32)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run publish -- -a ia32

0 comments on commit be386c6

Please sign in to comment.