Skip to content

deps: Bump the all-dependencies group with 49 updates (#96) #74

deps: Bump the all-dependencies group with 49 updates (#96)

deps: Bump the all-dependencies group with 49 updates (#96) #74

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
permissions:
id-token: write
contents: read
jobs:
deploy-preprod:
if: github.ref == 'refs/heads/develop'
uses: ./.github/workflows/deploy-reusable.yml
with:
environment: preprod
aws-region: eu-west-2
secrets:
AWS_ROLE_ARN: ${{ secrets.AWS_ROLE_ARN }}
AWS_SECRETS_ARN: ${{ secrets.AWS_SECRETS_ARN }}
AWS_TASK_ROLE_ARN: ${{ secrets.AWS_TASK_ROLE_ARN }}

Check failure on line 22 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / Deploy

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 22, Col: 26): Invalid secret, AWS_TASK_ROLE_ARN is not defined in the referenced workflow. .github/workflows/deploy.yml (Line: 23, Col: 31): Invalid secret, AWS_EXECUTION_ROLE_ARN is not defined in the referenced workflow.
AWS_EXECUTION_ROLE_ARN: ${{ secrets.AWS_EXECUTION_ROLE_ARN }}
deploy-prod:
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/deploy-reusable.yml
with:
environment: prod
aws-region: eu-west-2
secrets:
AWS_ROLE_ARN: ${{ secrets.AWS_ROLE_ARN }}
AWS_SECRETS_ARN: ${{ secrets.AWS_SECRETS_ARN }}
AWS_TASK_ROLE_ARN: ${{ secrets.AWS_TASK_ROLE_ARN }}
AWS_EXECUTION_ROLE_ARN: ${{ secrets.AWS_EXECUTION_ROLE_ARN }}