Skip to content

Commit

Permalink
Merge pull request #36 from kairusds/main
Browse files Browse the repository at this point in the history
Fix release-zip.yaml workflow
  • Loading branch information
yuk7 authored May 22, 2024
2 parents f7aceea + ca6571a commit 7f40d55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-zip.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
env:
ARCH: 'x64'
OUT_ZIP: 'Alpine.zip'
run: make -e && tree
run: cd src_x64 && make -j$(nproc) -e && mv Alpine.zip ../
- name: Build Zip ARM64
shell: bash
env:
ARCH: 'arm64'
OUT_ZIP: 'Alpine_arm64.zip'
run: make -e && tree
run: cd src_arm64 && make -j$(nproc) -e && mv Alpine_arm64.zip ../
- name: Upload a Build Artifact x64
uses: actions/upload-artifact@main
with:
Expand Down

0 comments on commit 7f40d55

Please sign in to comment.