Fix deployment
This commit is contained in:
parent
d27429219c
commit
619370e9bc
2 changed files with 5 additions and 0 deletions
1
.github/workflows/cd.yml
vendored
1
.github/workflows/cd.yml
vendored
|
|
@ -40,3 +40,4 @@ jobs:
|
|||
workload-identity-provider: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER }}
|
||||
database-url: ${{ secrets.DATABASE_URL }}
|
||||
mailer-dsn: ${{ secrets.MAILER_DSN }}
|
||||
sms-dsn: ${{ secrets.SMS_DSN }}
|
||||
|
|
|
|||
4
.github/workflows/deploy.yml
vendored
4
.github/workflows/deploy.yml
vendored
|
|
@ -27,6 +27,9 @@ on:
|
|||
mailer-dsn:
|
||||
description: Mailer DSN
|
||||
required: true
|
||||
sms-dsn:
|
||||
description: SMS DSN
|
||||
required: true
|
||||
|
||||
|
||||
jobs:
|
||||
|
|
@ -123,6 +126,7 @@ jobs:
|
|||
--set=postgresql.url="${{ secrets.database-url }}" \
|
||||
--set=payum.apikey="${{ secrets.payum-apikey }}" \
|
||||
--set=mailer.dsn="${{ secrets.mailer-dsn }}" \
|
||||
--set=sms.dsn="${{ secrets.sms-dsn }}" \
|
||||
--set=php.storage.bucket="${{ vars.STORAGE_BUCKET }}" \
|
||||
--set=php.storage.endpoint="https://storage.googleapis.com" \
|
||||
--set=php.storage.region="eu-west-1" \
|
||||
|
|
|
|||
Loading…
Reference in a new issue