From 3393c67b54d17f10d7fb14e22cfa7dc9ef2d97b3 Mon Sep 17 00:00:00 2001 From: stevezhengshiqi Date: Thu, 29 Feb 2024 05:13:29 -0500 Subject: [PATCH 1/2] CI: Update checkout@v4 and upload-artifact@v4 --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 00e86a052..a9eda64f1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ jobs: name: Build Clover Release runs-on: macos-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Manage Version run: | @@ -35,7 +35,7 @@ jobs: releaseItems=(CloverPackage/sym/CloverISO*/*.7z CloverPackage/sym/CloverV2*.zip CloverPackage/CloverV2/EFI/CLOVER/CLOVERX64.efi.zip CloverPackage/sym/Clover_r*.pkg) for releaseItem in "${releaseItems[@]}"; do cp -Rf "${releaseItem}" ./ || exit 1; done - name: Upload to Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Clover beta-${{ env.GIT_SHA }} path: | From 2f3ed68fb4604143e66c3224ea38ced9dac1f55f Mon Sep 17 00:00:00 2001 From: stevezhengshiqi Date: Wed, 6 Mar 2024 19:11:45 -0500 Subject: [PATCH 2/2] build: Fix nasm link, which has been moved to ftp2 --- buildnasm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildnasm.sh b/buildnasm.sh index d0d9bec4e..7bc924df0 100755 --- a/buildnasm.sh +++ b/buildnasm.sh @@ -94,7 +94,7 @@ fnDownloadNasm () local tarball="nasm-${NASM_VERSION}.tar.xz" if [[ ! -f "$tarball" ]]; then echo "Status: $tarball not found." - curl -f -o download.tmp --remote-name -k https://ftp.osuosl.org/pub/blfs/conglomeration/nasm/$tarball || exit 1 + curl -k -f -o download.tmp --remote-name https://ftp2.osuosl.org/pub/blfs/conglomeration/nasm/$tarball || exit 1 mv download.tmp $tarball fi }