Skip to content

Commit

Permalink
Merge pull request github#2 from go1com/DO-2240
Browse files Browse the repository at this point in the history
Correct usage of secrets
  • Loading branch information
sanglt authored Apr 11, 2024
2 parents c8e1d0f + ecfdbbf commit f94ad3c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go1-helm-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ on:
description: 'Release tag from the previous workflow'
required: true
env:
KUBECONFIG_CONTENTS: secrets.KUBECONFIG_PRODUCTION_K8S_AU
KUBECONFIG_CONTENTS: ${{ secrets.KUBECONFIG_PRODUCTION_K8S_AU }}
# require envs for safe-settings app https://github.com/github/safe-settings/blob/main-enterprise/docs/deploy.md
APP_ID: secrets.APP_ID
WEBHOOK_SECRET: secrets.WEBHOOK_SECRET
PRIVATE_KEY: secrets.PRIVATE_KEY
APP_ID: ${{ secrets.APP_ID }}
WEBHOOK_SECRET: ${{ secrets.WEBHOOK_SECRET }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
jobs:
deploy-to-aks:
if: ${{ github.event.inputs.status == 'passed' }}
Expand Down
3 changes: 1 addition & 2 deletions go1-values-override.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
deploymentConfig:
{}
deploymentConfig: {}

ingress:
enabled: true
Expand Down

0 comments on commit f94ad3c

Please sign in to comment.