ci: 关闭arm64自动打包

```
curl: (18) transfer closed with 44597952 bytes remaining to read
Error: error building at STEP "RUN mkdir -p "${PKG_CACHE_PATH}" && curl -L "$DOWNLOAD_HOST/vercel/pkg-fetch/releases/download/$RELEASE_TAG/node-v$NODEV-linux-arm64" -o "${PKG_CACHE_PATH}/fetched-v$NODEV-linux-arm64" && curl -L "$DOWNLOAD_HOST/vercel/pkg-fetch/releases/download/$RELEASE_TAG/node-v$NODEV-linuxstatic-arm64" -o "${PKG_CACHE_PATH}/fetched-v$NODEV-linuxstatic-arm64"": error while running runtime: exit status 18
Error: Process completed with exit code 125.
```
This commit is contained in:
shanmite 2022-10-29 13:28:45 +08:00
parent c220ff5d27
commit a363b4ee34

View File

@ -53,27 +53,27 @@ jobs:
delete_file: "dist/*.zip"
tag_name: "v2"
overwrite: true
arm64:
runs-on: ubuntu-latest
name: arm64
steps:
- name: "Checkout codes"
uses: actions/checkout@v2
- name: "Pkg this"
run: |
sudo podman run --rm --privileged multiarch/qemu-user-static --reset -p yes
npm run pkg arm
- name: "Upload to artifact"
uses: actions/upload-artifact@v2
with:
name: arm64
path: "dist/*.zip"
- name: "Upload to release draft"
uses: xresloader/upload-to-github-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
with:
file: "dist/*.zip"
delete_file: "dist/*.zip"
tag_name: "v2"
overwrite: true
# arm64:
# runs-on: ubuntu-latest
# name: arm64
# steps:
# - name: "Checkout codes"
# uses: actions/checkout@v2
# - name: "Pkg this"
# run: |
# sudo podman run --rm --privileged multiarch/qemu-user-static --reset -p yes
# npm run pkg arm
# - name: "Upload to artifact"
# uses: actions/upload-artifact@v2
# with:
# name: arm64
# path: "dist/*.zip"
# - name: "Upload to release draft"
# uses: xresloader/upload-to-github-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
# with:
# file: "dist/*.zip"
# delete_file: "dist/*.zip"
# tag_name: "v2"
# overwrite: true