This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
BAU - amend workflows for correct deployments on commits #923
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy fsd-fund-store to Gov PaaS | |
on: | |
workflow_dispatch: | |
inputs: | |
deploy_to_dev: | |
required: false | |
default: false | |
type: boolean | |
description: Deploy to CloudFoundry dev? | |
push: | |
paths-ignore: | |
- '**/README.md' | |
jobs: | |
test_and_deploy: | |
uses: communitiesuk/funding-service-design-workflows/.github/workflows/deploy.yml@main | |
with: | |
app_name: ${{ github.event.repository.name }} | |
api: true | |
postgres_unit_testing: true | |
deploy_to_dev: false | |
run_performance_tests: true | |
run_e2e_tests: true | |
secrets: | |
CF_API: ${{secrets.CF_API}} | |
CF_ORG: ${{secrets.CF_ORG}} | |
CF_SPACE: ${{secrets.CF_SPACE}} | |
CF_USER: ${{secrets.CF_USERNAME}} | |
CF_PASSWORD: ${{secrets.CF_PASSWORD}} | |
E2E_PAT: ${{secrets.E2E_PAT}} |