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 2ed30f2 commit f9a73e0
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/release-zip.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,21 @@ jobs:
steps:
- uses: actions/checkout@main
- name: Install dependencies for build (Apt)
shell: bash
run: |
sudo env DEBIAN_FRONTEND=noninteractive apt update -y && \
sudo env DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends libarchive-tools curl jq tree
- name: Build Zip x64
shell: bash
env:
ARCH: 'x64'
OUT_ZIP: 'Alpine.zip'
LNCR_EXE: 'alpine-3.19.0.exe'
run: cd src_x64 && make -j$(nproc)
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'
LNCR_EXE: 'alpine_arm64-3.19.0.exe'
run: cd src_arm64 && make -j$(nproc)
- run: 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 f9a73e0

Please sign in to comment.