Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
Tried remove leading and trailing whitespaces in GPG_PRIVATE_KEY
  • Loading branch information
alitpc25 committed Nov 26, 2023
1 parent 067f120 commit 844280f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
run: |
cd ./resq/backend/resq/
echo "$GPG_PRIVATE_KEY" | gpg --import
echo "$GPG_PRIVATE_KEY" | tr -d '[:space:]' | gpg --import
gpg --quiet --batch --yes --decrypt --passphrase="$RESQ_PASSPHRASE" --output project_env_prod.tar.gz project_env_prod.tar.gz.gpg
tar xzvf project_env_prod.tar.gz
Expand Down

0 comments on commit 844280f

Please sign in to comment.