Skip to content

Commit

Permalink
Merge pull request #3155 from bitzesty/hardcode-url
Browse files Browse the repository at this point in the history
Fix: Replace CF_PACKAGE_URL variable with direct URL in deployment
  • Loading branch information
TheDancingClown authored Dec 4, 2024
2 parents 1ed8093 + 89cfccf commit a34bbe8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,3 @@ GOV_UK_NOTIFY_API_TEMPLATE_ID=id
SESSION_TIMEOUT=1
HOST=http://localhost:3000
ENABLE_ASIM_LOGGER=false
CF_PACKAGE_URL="https://packages.cloudfoundry.org/stable\?release\=debian64\&version\=8.8.3\&source\=github-rel"
2 changes: 1 addition & 1 deletion .github/workflows/deploy_development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
run: |
curl -v -L -o cf-cli_amd64.deb "$CF_PACKAGE_URL"
curl -v -L -o cf-cli_amd64.deb 'https://packages.cloudfoundry.org/stable\?release\=debian64\&version\=8.8.3\&source\=github-rel'
sudo dpkg -i cf-cli_amd64.deb
cf -v
cf add-plugin-repo CF-Community https://plugins.cloudfoundry.org
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
run: |
curl -v -L -o cf-cli_amd64.deb "$CF_PACKAGE_URL"
curl -v -L -o cf-cli_amd64.deb 'https://packages.cloudfoundry.org/stable\?release\=debian64\&version\=8.8.3\&source\=github-rel'
sudo dpkg -i cf-cli_amd64.deb
cf -v
cf add-plugin-repo CF-Community https://plugins.cloudfoundry.org
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
run: |
curl -v -L -o cf-cli_amd64.deb "$CF_PACKAGE_URL"
curl -v -L -o cf-cli_amd64.deb 'https://packages.cloudfoundry.org/stable\?release\=debian64\&version\=8.8.3\&source\=github-rel'
sudo dpkg -i cf-cli_amd64.deb
cf -v
cf add-plugin-repo CF-Community https://plugins.cloudfoundry.org
Expand Down

0 comments on commit a34bbe8

Please sign in to comment.