Skip to content

Commit

Permalink
Fix arm64 name
Browse files Browse the repository at this point in the history
  • Loading branch information
bovine3dom committed Oct 3, 2024
1 parent 1860b7c commit e270154
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ jobs:
- run: |
sudo apt-get install gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu
nimble build -d:release -d:danger --opt:speed -Y --cpu:arm64
mv native_main native_main-armhf64
file native_main-armhf64
name: armhf64 build
mv native_main native_main-arm64
file native_main-arm64
name: arm64 build
if: runner.os == 'Linux'
- run: nimble build -d:debug -Y --verbose
Expand Down Expand Up @@ -87,5 +87,5 @@ jobs:
uses: actions/upload-artifact@v4
if: runner.os == 'Linux'
with:
name: native_main-armhf64-${{ runner.os }}
path: native_main-armhf64
name: native_main-arm64-${{ runner.os }}
path: native_main-arm64
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ jobs:
- run: |
sudo apt-get install gcc-arm-linux-gnueabihf gcc-aarch64-linux-gnu
nimble build -d:release -d:danger --opt:speed -Y --cpu:arm64
mv native_main native_main-armhf64
file native_main-armhf64
name: armhf64 build
mv native_main native_main-arm64
file native_main-arm64
name: arm64 build
if: runner.os == 'Linux'
- run: nimble build -d:danger -d:release --opt:speed -Y --verbose
Expand Down Expand Up @@ -125,6 +125,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_upload_url.outputs.data }}
asset_name: native_main-armhf64-${{ runner.os }}
asset_path: native_main-armhf64
asset_name: native_main-arm64-${{ runner.os }}
asset_path: native_main-arm64
asset_content_type: application/octet-stream

0 comments on commit e270154

Please sign in to comment.