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 a0135e3 commit e13ef0eCopy full SHA for e13ef0e
.github/workflows/deploy.yml
@@ -99,6 +99,7 @@ jobs:
99
id-token: 'write'
100
environment:
101
name: ${{ needs.meta.outputs.environment }}
102
+ needs: ["meta"]
103
steps:
104
- name: Checkout
105
uses: actions/checkout@v3
@@ -160,6 +161,7 @@ jobs:
160
161
--set=php.jwt.secretKey="$JWT_SECRET_KEY" \
162
--set=php.jwt.publicKey="$(openssl pkey -in <(echo "$JWT_SECRET_KEY") -passin file:<(echo "$JWT_PASSPHRASE") -pubout)" \
163
--set=php.jwt.passphrase=$JWT_PASSPHRASE \
164
+ --set=php.corsAllowOrigin="^$(echo "${{ join(fromJSON(needs.meta.outputs.cors), '|') }}" | sed 's/\./\\./g')$" \
165
--set=php.host=${{ env.URL }} \
166
--set=next.rootUrl=${{ env.URL }} \
167
--set=github.key=${{ secrets.gh-key }} \
0 commit comments