Skip to content

Commit

Permalink
Merge pull request #1884 from cisagov/update-test-yaml-env
Browse files Browse the repository at this point in the history
Updated environment variable on workflow
  • Loading branch information
abroddrick authored Mar 8, 2024
2 parents 58eb352 + 7d891f0 commit f1a9d9d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
deploy:
runs-on: ubuntu-latest
env:
ENVIRONMENT: ${{ needs.variables.outputs.environment }}
CF_USERNAME: CF_${{ github.event.inputs.environment }}_USERNAME
CF_PASSWORD: CF_${{ github.event.inputs.environment }}_PASSWORD
steps:
Expand All @@ -38,5 +37,5 @@ jobs:
cf_username: ${{ secrets[env.CF_USERNAME] }}
cf_password: ${{ secrets[env.CF_PASSWORD] }}
cf_org: cisa-dotgov
cf_space: ${{ env.ENVIRONMENT }}
cf_command: "push -f ops/manifests/manifest-${{ env.ENVIRONMENT }}.yaml --strategy rolling"
cf_space: ${{ github.event.inputs.environment }}
cf_command: "push -f ops/manifests/manifest-${{ github.event.inputs.environment }}.yaml --strategy rolling"

0 comments on commit f1a9d9d

Please sign in to comment.