summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 }}