summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClementTsang <cjhtsang@uwaterloo.ca>2021-06-26 15:47:13 -0400
committerClementTsang <cjhtsang@uwaterloo.ca>2021-06-26 15:47:13 -0400
commit357ef7de18c23123e8d4e3644d53801af519061e (patch)
treeb356b14dfdf45b4656315c71cafff5f4cb187804
parent103ba5ba4380b94d10f6c8105e894ac21e6cfe3c (diff)
github: fix deploy script for 2-17 again...0.6.2
-rw-r--r--.github/workflows/deployment.yml6
1 files 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 }}