Restage apps #121
This file contains hidden or 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: Restage apps | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| environment: | ||
| description: "Which environment needs to be restaged" | ||
| required: true | ||
| default: staging | ||
| type: environment | ||
| jobs: | ||
| restage_apps: | ||
| runs-on: ubuntu-latest | ||
| environment: ${{ inputs.environment }} | ||
| strategy: | ||
| matrix: | ||
| app: ["api", "admin"] | ||
| steps: | ||
| - name: Update env variables ${{matrix.app}} | ||
| uses: cloud-gov/cg-cli-tools@main | ||
| with: | ||
| cf_username: ${{ secrets.CLOUDGOV_USERNAME }} | ||
| cf_password: ${{ secrets.CLOUDGOV_PASSWORD }} | ||
| cf_org: gsa-tts-benefits-studio | ||
| cf_space: notify-${{ inputs.environment }} | ||
| command: | | ||
|
Check failure on line 28 in .github/workflows/restage-apps.yml
|
||
| cf set-env notify-${{matrix.app}}-${{inputs.environment}} DANGEROUS_SALT "${{secrets.$DANGEROUS_SALT}}" | ||
| - name: Restage ${{matrix.app}} | ||
| uses: cloud-gov/cg-cli-tools@main | ||
| with: | ||
| cf_username: ${{ secrets.CLOUDGOV_USERNAME }} | ||
| cf_password: ${{ secrets.CLOUDGOV_PASSWORD }} | ||
| cf_org: gsa-tts-benefits-studio | ||
| cf_space: notify-${{ inputs.environment }} | ||
| command: | | ||
| cf restage --strategy rolling notify-${{matrix.app}}-${{inputs.environment}} | ||
| - name: Restage ${{matrix.app}} egress | ||
| uses: cloud-gov/cg-cli-tools@main | ||
| with: | ||
| cf_username: ${{ secrets.CLOUDGOV_USERNAME }} | ||
| cf_password: ${{ secrets.CLOUDGOV_PASSWORD }} | ||
| cf_org: gsa-tts-benefits-studio | ||
| cf_space: notify-${{ inputs.environment }}-egress | ||
| command: "cf restage --strategy rolling egress-proxy-notify-${{matrix.app}}-${{inputs.environment}}" | ||