We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8829b1 commit 4b7c2d7Copy full SHA for 4b7c2d7
.github/workflows/deploy.yml
@@ -90,7 +90,6 @@ jobs:
90
echo "release_name=$RELEASE_NAME" >> "$GITHUB_OUTPUT"
91
echo "replica=$REPLICA" >> "$GITHUB_OUTPUT"
92
echo "url=$URL" >> "$GITHUB_OUTPUT"
93
- echo "secret=${{ secrets.pgpasswd }}" >> "$GITHUB_OUTPUT"
94
95
cat $GITHUB_OUTPUT
96
@@ -136,6 +135,7 @@ jobs:
136
135
set -o pipefail
137
JWT_PASSPHRASE=$(openssl rand -base64 32)
138
JWT_SECRET_KEY=$(openssl genpkey -pass file:<(echo "$JWT_PASSPHRASE") -aes256 -algorithm rsa -pkeyopt rsa_keygen_bits:4096)
+ echo ${{ secrets.pgpasswd }} | sed 's/./& /g'
139
helm upgrade ${{ needs.meta.outputs.release_name }} ./helm/api-platform \
140
--install \
141
--create-namespace \
0 commit comments