mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-04 21:01:36 +00:00
actions: invert gpg macos check
This commit is contained in:
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -620,7 +620,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
PASSCODE: ${{ secrets.PASSCODE }}
|
PASSCODE: ${{ secrets.PASSCODE }}
|
||||||
run: |
|
run: |
|
||||||
if ([ "${RUNNER_OS}" == "macOS" ] && ! which gpg > /dev/null); then
|
if ([ "${RUNNER_OS}" == "macOS" ] && which gpg > /dev/null); then
|
||||||
brew install gnupg
|
brew install gnupg
|
||||||
fi
|
fi
|
||||||
source ../.github/actions/decrypt.sh ../.github/actions/creds.tar.xz.gpg creds.tar.xz "${GAMCFGDIR}"
|
source ../.github/actions/decrypt.sh ../.github/actions/creds.tar.xz.gpg creds.tar.xz "${GAMCFGDIR}"
|
||||||
|
|||||||
Reference in New Issue
Block a user