Skip to content

Commit

Permalink
fix(.github/workflows/test_deploy.yaml): correct cluster variable syn…
Browse files Browse the repository at this point in the history
…tax to use proper GitHub Actions expression

The cluster variable in the GitHub Actions workflow was incorrectly set without the expression syntax `${{ }}`, which is necessary for evaluating GitHub secrets or environment variables. This change ensures that the `cluster` variable correctly references the `DEV_STAGING_CLUSTER` secret, allowing the deployment process to access the correct cluster configuration.
  • Loading branch information
cybersiddhu committed Jun 27, 2024
1 parent ebac1a6 commit cd7ed45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test_deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
deploy:
uses: ./.github/workflows/deploy-app.yaml
with:
cluster: ${{ secrets.DEV_STAGING_CLUSTER }}
cluster: secrets.DEV_STAGING_CLUSTER
cluster_state_storage: ${{ secrets.DEV_STAGING_KOPS_STATE_STORAGE }}
repository: "https://github.com/dictyBase/static-server.git"
image: goran
Expand Down

0 comments on commit cd7ed45

Please sign in to comment.