Back to postgres #22
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 | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- staging | |
- ci/setup | |
concurrency: | |
group: ${{ github.ref }}-deploy | |
env: | |
CI: true | |
permissions: | |
id-token: write | |
contents: write | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
deploy: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: "π¨ Install dependencies" | |
run: pnpm install --frozen-lockfile | |
- name: "π₯ Configure AWS Credentials" | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::262732185023:role/github-action-deploy-role | |
aws-region: eu-west-1 | |
retry-max-attempts: 5 | |
- name: "π₯ Login to Amazon ECR" | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: "π¨ Prebuild docker dependencies" | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
platforms: linux/arm64 | |
push: true | |
tags: 262732185023.dkr.ecr.eu-west-1.amazonaws.com/indexer:latest | |
- name: "π SST Deploy" | |
run: | | |
echo "Deploying with stage: prod" | |
pnpm sst deploy --stage prod |