mirror of
https://github.com/GAM-team/GAM.git
synced 2026-06-19 13:41: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:
|
||||
PASSCODE: ${{ secrets.PASSCODE }}
|
||||
run: |
|
||||
if ([ "${RUNNER_OS}" == "macOS" ] && ! which gpg > /dev/null); then
|
||||
if ([ "${RUNNER_OS}" == "macOS" ] && which gpg > /dev/null); then
|
||||
brew install gnupg
|
||||
fi
|
||||
source ../.github/actions/decrypt.sh ../.github/actions/creds.tar.xz.gpg creds.tar.xz "${GAMCFGDIR}"
|
||||
|
||||
Reference in New Issue
Block a user