diff --git a/.github/workflows/test-deploy.yaml b/.github/workflows/test-deploy.yaml index 310a5ba0a..af429738f 100644 --- a/.github/workflows/test-deploy.yaml +++ b/.github/workflows/test-deploy.yaml @@ -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: @@ -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" \ No newline at end of file + cf_space: ${{ github.event.inputs.environment }} + cf_command: "push -f ops/manifests/manifest-${{ github.event.inputs.environment }}.yaml --strategy rolling" \ No newline at end of file