Compare commits

...

4 commits

Author SHA1 Message Date
smartfridge
d40b76719a
Update dev.yml 2022-11-19 20:18:59 +01:00
smartfridge
0a77987cec
Delete winArm.yml 2022-11-19 20:18:48 +01:00
smartfridge
e893675d6a
Update winArm.yml 2022-11-19 20:08:59 +01:00
smartfridge
a072e389a5
Update winArm.yml 2022-11-19 20:05:28 +01:00
2 changed files with 34 additions and 39 deletions

View file

@ -113,7 +113,40 @@ jobs:
with:
name: ArmCordWindows.zip
path: dist/ArmCord-3.1.0-win.zip
build-windowsOnARM:
runs-on: windows-latest
steps:
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Checkout code
uses: actions/checkout@v2
- name: Set architecture
run: set npm_config_arch=arm64
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
- name: Install Node dependencies
run: pnpm install -g cargo-cp-artifact && pnpm install
- name: Install Electron-Builder
run: pnpm install -g electron-builder
- name: Replace the version number
run: (Get-Content src/utils.ts) -replace "\d\.\d\.\d", "DEV" | Out-File src/utils.ts
- name: Build
run: npm run build && electron-builder --windows zip --arm64
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: ArmCordWindowsArm64.zip
path: dist/ArmCord-3.1.0-win.zip
release:
runs-on: ubuntu-latest

View file

@ -1,38 +0,0 @@
name: Windows on ARM
on:
push:
branches:
- dev
jobs:
build-windowsOnARM:
runs-on: windows-latest
steps:
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Checkout code
uses: actions/checkout@v2
- name: Install pnpm
run: npm i -g pnpm && pnpm setup
- name: Set architecture
run: set npm_config_arch=arm64
- name: Install Node dependencies
run: pnpm install -g cargo-cp-artifact && pnpm install
- name: Install Electron-Builder
run: pnpm install -g electron-builder
- name: Build
run: npm run build && electron-builder --windows --arm64
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Delete unpacked builds
run: Remove-Item -LiteralPath ".\dist\win-unpacked" -Force -Recurse
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: ArmCordWindows
path: dist/