Skip to content

Commit

Permalink
[GHA MAC] Try to reverse list on JDK
Browse files Browse the repository at this point in the history
ci release
  • Loading branch information
RoiArthurB committed Apr 22, 2022
1 parent 993db9e commit fcab28e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-travis.yml
Expand Up @@ -153,7 +153,7 @@ jobs:
# Variables
MACOS_DEV_ID: ${{ secrets.MACOS_DEV_ID }}
MACOS_KEYCHAIN_PWD: ${{ secrets.MACOS_KEYCHAIN_PWD }}
IS_WITH_JDK: contains(matrix.toSignedZipName, 'withJDK')
IS_WITH_JDK: ${{ matrix.toSignedZipName }} =~ .*'withJDK'
run: |
# Unlock
security unlock-keychain -p "$MACOS_KEYCHAIN_PWD" build.keychain
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
# Variables
MACOS_DEV_ID: ${{ secrets.MACOS_DEV_ID }}
MACOS_KEYCHAIN_PWD: ${{ secrets.MACOS_KEYCHAIN_PWD }}
IS_WITH_JDK: contains(matrix.toSignedZipName, 'withJDK')
IS_WITH_JDK: ${{ matrix.toSignedZipName }} =~ .*'withJDK'
run: |
# Unlock
security unlock-keychain -p "$MACOS_KEYCHAIN_PWD" build.keychain
Expand Down

0 comments on commit fcab28e

Please sign in to comment.