Skip to content

Commit

Permalink
Update release-zip.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
kairusds authored Dec 22, 2023
1 parent 61f699c commit b8b18fe
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release-zip.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ jobs:
ARCH: 'x64'
OUT_ZIP: 'Alpine.zip'
LNCR_EXE: 'alpine-3.19.0.exe'
run: make -j$(nproc)
run: cd src_x64 && make -j$(nproc) && mv Alpine.zip ..
- name: Build Zip ARM64
shell: bash
env:
ARCH: 'arm64'
OUT_ZIP: 'Alpine_arm64.zip'
LNCR_EXE: 'alpine_arm64-3.19.0.exe'
run: rm -rf rootfs && make -j$(nproc)
run: cd ../src_arm64 && make -j$(nproc) && mv Alpine_arm64.zip ..
- name: Upload a Build Artifact x64
uses: actions/upload-artifact@main
with:
Expand Down Expand Up @@ -83,3 +83,4 @@ jobs:
asset_path: Alpine_arm64.zip
asset_name: Alpine_arm64.zip
asset_content_type: application/zip

0 comments on commit b8b18fe

Please sign in to comment.