diff --git a/.github/workflows/deploy-staging.yaml b/.github/workflows/deploy-staging.yaml new file mode 100644 index 0000000..aac814c --- /dev/null +++ b/.github/workflows/deploy-staging.yaml @@ -0,0 +1,18 @@ +name: Deploy to staging + +on: + workflow_dispatch: + push: + branches: + - main + +jobs: + deploy-staging: + uses: ./.github/workflows/serverless-deploy.yaml + permissions: + id-token: write + contents: read + secrets: + AWS_DEPLOYER_ROLE: ${{ secrets.AWS_DEPLOYER_ROLE }} + with: + ENVIRONMENT: staging \ No newline at end of file