chore: package update #1456
Workflow file for this run
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: Dev Build | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
build_linux_version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b | |
- uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd | |
with: | |
node-version: 16 | |
- name: Get App Version | |
uses: nyaa8/package-version@5c5cc7daa32fab488b44d448f080aa9ef7255a44 | |
- name: install dependencies | |
run: npm cache clean --force && npm run init | |
- name: Build app | |
run: npm run build:linux | |
- uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 | |
with: | |
name: linux-build | |
path: 'dist/DeFi Wallet-${{ env.PACKAGE_VERSION}}.AppImage' | |
build_mac_version: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b | |
- uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd | |
with: | |
node-version: 16 | |
- name: Get App Version | |
uses: nyaa8/package-version@5c5cc7daa32fab488b44d448f080aa9ef7255a44 | |
- name: install dependencies | |
run: npm cache clean --force && npm run init | |
- name: Build app | |
run: npm run build:mac | |
env: | |
CSC_LINK: ${{ secrets.CSC_LINK}} | |
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD}} | |
CI: true | |
APPLE_ID: ${{ secrets.APPLE_ID}} | |
APPLE_ID_PASS: ${{ secrets.APPLE_ID_PASS}} | |
- uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 | |
with: | |
name: mac-build | |
path: 'dist/DeFi Wallet-${{ env.PACKAGE_VERSION}}.dmg' | |
build_windows_version: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b | |
- uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd | |
with: | |
node-version: 16 | |
- name: Get App Version | |
uses: nyaa8/package-version@5c5cc7daa32fab488b44d448f080aa9ef7255a44 | |
- name: install dependencies | |
run: npm cache clean --force && npm run init | |
- name: Build app | |
run: npm run build:win | |
shell: powershell | |
- uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 | |
with: | |
name: win-build | |
path: 'dist/DeFi Wallet Setup ${{ env.PACKAGE_VERSION}}.exe' |