From 357ef7de18c23123e8d4e3644d53801af519061e Mon Sep 17 00:00:00 2001 From: ClementTsang Date: Sat, 26 Jun 2021 15:47:13 -0400 Subject: github: fix deploy script for 2-17 again... --- .github/workflows/deployment.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index e1c4c639..051779a9 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -300,17 +300,17 @@ jobs: python "./deployment/packager.py" ${{ env.RELEASE_VERSION }} "./deployment/linux/arch/PKGBUILD.template" "./PKGBUILD" "SHA512" "./${{ env.RELEASE_VERSION }}.tar.gz" - name: Build AUR binary PKGBUILD (Linux x86-64 GNU) - if: matrix.triple.target == 'x86_64-unknown-linux-gnu' + if: matrix.triple.target == 'x86_64-unknown-linux-gnu' && matrix.triple.container == '' run: | python "./deployment/packager.py" ${{ env.RELEASE_VERSION }} "./deployment/linux/arch/PKGBUILD_BIN.template" "./PKGBUILD_BIN" "SHA512" "./bottom_x86_64-unknown-linux-gnu.tar.gz" - name: Tar AUR PKGBUILDs - if: matrix.triple.target == 'x86_64-unknown-linux-gnu' + if: matrix.triple.target == 'x86_64-unknown-linux-gnu' && matrix.triple.container == '' run: | tar -czvf arch.tar.gz PKGBUILD_BIN PKGBUILD - name: Upload AUR PKGBUILDs (Linux x86-64 GNU) - if: matrix.triple.target == 'x86_64-unknown-linux-gnu' + if: matrix.triple.target == 'x86_64-unknown-linux-gnu' && matrix.triple.container == '' uses: actions/upload-release-asset@v1.0.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -- cgit v1.2.3