Skip to content

Commit

Permalink
replaced test secrets with original ones
Browse files Browse the repository at this point in the history
  • Loading branch information
Vignesh Kennadi committed Sep 9, 2024
1 parent 47ae61f commit 9cfdc1c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
- name: Import GPG Key
run: |
echo "${{ secrets.GPG_PRIVATE_KEY_TEST }}" | gpg --batch --import
echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import
gpg --list-secret-keys
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY_TEST}}
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY}}

- name: GPG Configuration and Key Status
run: |
Expand All @@ -51,7 +51,7 @@ jobs:
# mvn clean verify -DskipTests=true
run: |
export GPG_TTY=$(tty)
mvn clean verify -DskipTests=true -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE_TEST }}
mvn clean verify -DskipTests=true -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }}
working-directory: Xero-Java
env:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE_TEST }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

0 comments on commit 9cfdc1c

Please sign in to comment.