Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
rinrab committed Dec 26, 2023
1 parent ffdc647 commit e5ef8c5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
strategy:
matrix:
architecture: [win-x64, win-x86]
arch: [win-x64, win-x86, win-arm64]

runs-on: windows-latest

Expand All @@ -24,7 +24,7 @@ jobs:
uses: actions/setup-dotnet@v3

- name: Build
run: dotnet build Installer --arch ${{ matrix.architecture }} --configuration Release
run: dotnet build Installer --arch ${{ matrix.arch }} --configuration Release

- name: Test
run: dotnet test --no-build --verbosity normal
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ jobs:

strategy:
matrix:
architecture: [x64, x86]
arch: [win-x64, win-x86, win-arm64]

runs-on: windows-latest

steps:
- uses: actions/checkout@v3

- name: Build
run: dotnet build Installer --arch ${{ matrix.architecture }} --configuration Release
run: dotnet build Installer --arch ${{ matrix.arch }} --configuration Release

- name: Upload binaries to release
uses: actions/upload-release-asset@v1
Expand All @@ -46,5 +46,5 @@ jobs:
with:
upload_url: ${{ needs.create_release.outputs.upload_url }}
asset_path: .\Installer\bin\Release\en-US\AOVpnManager.msi
asset_name: AOVpnManager-${{ matrix.architecture }}.msi
asset_name: AOVpnManager-${{ matrix.arch }}.msi
asset_content_type: application/msi

0 comments on commit e5ef8c5

Please sign in to comment.