From d4c155a0af28a149e4106c105a9ab64f8a1f3b98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82?= Date: Tue, 18 Aug 2026 00:41:39 +0200 Subject: [PATCH] =?UTF-8?q?i=20had=20it=20wrong=20=F0=9F=98=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 38d0aca..28487ac 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,19 +13,6 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Bootstrap Antergos packages signing key - run: | - KEY_FINGERPRINT=AA644A095D2AF5F950FADB57C51BFE8D3A985236 - curl -fsSL \ -https://raw.githubusercontent.com/Antergos-NeXT/antergos-packages/master/packages/antergos-next-keyring/antergos-next.gpg \ - -o /tmp/antergos-next.gpg - pacman-key --init - pacman-key --add /tmp/antergos-next.gpg - gpg --homedir /etc/pacman.d/gnupg --batch --with-colons \ - --fingerprint "$KEY_FINGERPRINT" | grep -q "fpr:::::::::$KEY_FINGERPRINT:" - pacman-key --lsign-key "$KEY_FINGERPRINT" - rm -f /tmp/antergos-next.gpg - - name: Install dependencies run: | @@ -37,6 +24,17 @@ https://raw.githubusercontent.com/Antergos-NeXT/antergos-packages/master/package python \ python-pip + - name: Bootstrap Antergos package signing key + run: | + KEY_FINGERPRINT=AA644A095D2AF5F950FADB57C51BFE8D3A985236 + curl -fsSL -o /tmp/antergos-next.gpg https://raw.githubusercontent.com/Antergos-NeXT/antergos-packages/master/packages/antergos-next-keyring/antergos-next.gpg + pacman-key --init + pacman-key --add /tmp/antergos-next.gpg + gpg --homedir /etc/pacman.d/gnupg --batch --with-colons --fingerprint "$KEY_FINGERPRINT" | grep -q "fpr:::::::::$KEY_FINGERPRINT:" + pacman-key --lsign-key "$KEY_FINGERPRINT" + rm -f /tmp/antergos-next.gpg + + - name: Set up WORKSPACE_DIR run: | echo "WORKSPACE_DIR=${{ github.workspace }}" >> $GITHUB_ENV