Merge pull request #729 from govuk-one-login/OJ-1539-audit #410
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: Package for Dev | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| jobs: | |
| deploy: | |
| name: Package for Dev | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| env: | |
| AWS_REGION: eu-west-2 | |
| ENVIRONMENT: dev | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Assume temporary AWS role | |
| uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| role-to-assume: ${{ secrets.DEV_GH_ACTIONS_ROLE_ARN }} | |
| aws-region: ${{ env.AWS_REGION }} | |
| - name: SAM Validate | |
| run: sam validate --region ${{ env.AWS_REGION }} -t infrastructure/template.yaml | |
| - name: SAM build | |
| run: | | |
| mkdir out | |
| sam build -t infrastructure/template.yaml -b out/ | |
| - name: Deploy SAM app | |
| uses: govuk-one-login/[email protected] | |
| with: | |
| artifact-bucket-name: ${{ secrets.DEV_ARTIFACT_SOURCE_BUCKET_NAME }} | |
| signing-profile-name: ${{ secrets.DEV_SIGNING_PROFILE_NAME }} | |
| working-directory: ./out |