Skip to content

Commit

Permalink
Fix typo when using cf_api parameter (#138)
Browse files Browse the repository at this point in the history
There is a typo when initializing the cf_api parameter that is passed to the cf-cli-action action, resulting in passing an empty value for the API URLs.
  • Loading branch information
pderop authored Jan 15, 2024
1 parent 81b59e5 commit ad73795
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
if: inputs.application == 'projectreactor'
uses: citizen-of-planet-earth/cf-cli-action@v2
with:
cf_api: $${{ secrets.CF_PRIMARY_API }}
cf_api: ${{ secrets.CF_PRIMARY_API }}
cf_username: ${{ secrets.CF_USER }}
cf_password: ${{ secrets.CF_PASSWORD }}
cf_org: ${{ secrets.CF_ORG }}
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Deploy to CF secondary
uses: citizen-of-planet-earth/cf-cli-action@v2
with:
cf_api: $${{ secrets.CF_SECONDARY_API }}
cf_api: ${{ secrets.CF_SECONDARY_API }}
cf_username: ${{ secrets.CF_USER }}
cf_password: ${{ secrets.CF_PASSWORD }}
cf_org: ${{ secrets.CF_ORG }}
Expand Down

0 comments on commit ad73795

Please sign in to comment.