This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
Remove if copilot since this is only for that #552
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 to Gov PaaS | |
on: | |
push: | |
paths-ignore: | |
- '**/README.md' | |
jobs: | |
test_and_deploy: | |
if: ${{ github.actor != 'dependabot[bot]' && !github.event.inputs.copilot }} | |
uses: communitiesuk/funding-design-service-workflows/.github/workflows/deploy.yml@main | |
with: | |
app_name: ${{ github.event.repository.name }} | |
api: false | |
assets_required: true | |
deploy_to_dev: true | |
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}} | |
RSA256_PUBLIC_KEY_BASE64: ${{secrets.RSA256_PUBLIC_KEY_BASE64}} |