Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/component-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ on:
SENTRY_AUTH_TOKEN:
required: false
description: "Sentry Auth Token, this value is injected into the secrets of a docker image"
FARO_API_KEY:
required: false
description: "Grafana Faro API key for source-map upload, this value is injected into the secrets of a docker image"
AWS_CDN_ACCESS_KEY_ID:
required: false
description: "AWS CDN Secret Access ID, this value is injected into the secrets of a docker image"
Expand Down Expand Up @@ -202,6 +205,7 @@ jobs:
GHL_USERNAME=${{ secrets.GHL_USERNAME }}
GHL_PASSWORD=${{ secrets.GHL_PASSWORD }}
SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}
FARO_API_KEY=${{ secrets.FARO_API_KEY }}
AWS_CDN_ACCESS_KEY_ID=${{ secrets.AWS_CDN_ACCESS_KEY_ID }}
AWS_CDN_SECRET_ACCESS_KEY=${{ secrets.AWS_CDN_SECRET_ACCESS_KEY }}
LOKALISE_TOKEN=${{ secrets.LOKALISE_TOKEN }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/deploy-generic-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ on:
SENTRY_AUTH_TOKEN:
required: false
description: 'Sentry auth token, passed as Docker build secret'
FARO_API_KEY:
required: false
description: 'Grafana Faro API key for source-map upload, passed as Docker build secret'
AWS_CDN_ACCESS_KEY_ID:
required: false
description: 'CDN access key ID for S3 access, injected into Docker image'
Expand Down Expand Up @@ -168,6 +171,7 @@ jobs:
AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }}
SLACK_APP_TOKEN: ${{ secrets.SLACK_APP_TOKEN }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
FARO_API_KEY: ${{ secrets.FARO_API_KEY }}
AWS_CDN_ACCESS_KEY_ID: ${{ secrets.AWS_CDN_ACCESS_KEY_ID }}
AWS_CDN_SECRET_ACCESS_KEY: ${{ secrets.AWS_CDN_SECRET_ACCESS_KEY }}
NEXT_SERVER_ACTIONS_ENCRYPTION_KEY: ${{ secrets.NEXT_SERVER_ACTIONS_ENCRYPTION_KEY }}
Expand Down
Loading