Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions .github/workflows/sst-gigabugs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ jobs:
node-version: 24.x
cache: 'npm'

- name: Install dependencies
run: |
npm run build-ci

- name: Install SST dependencies
run: |
cd prod/sst
npm install

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@5fd3084fc36e372ff1fff382a39b10d03659f355 # v2
with:
Expand All @@ -44,9 +53,6 @@ jobs:
- name: Login to Amazon ECR
run: |
aws ecr get-login-password --region $AWS_DEFAULT_REGION | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com
- name: Install dependencies
run: |
npm run build-ci
- name: Resolve Zero protocol versions
run: |
node --experimental-strip-types -e "
Expand Down Expand Up @@ -93,7 +99,6 @@ jobs:
ZERO_ADMIN_PASSWORD: ${{ secrets.ZERO_ADMIN_PASSWORD }}
run: |
cd prod/sst
npm install
npx sst deploy --stage gigabugs-ebs
- name: Deploy SST app non ebs
env:
Expand All @@ -113,5 +118,4 @@ jobs:
ZERO_ADMIN_PASSWORD: ${{ secrets.ZERO_ADMIN_PASSWORD }}
run: |
cd prod/sst
npm install
npx sst deploy --stage gigabugs
13 changes: 9 additions & 4 deletions .github/workflows/sst-prod-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ jobs:
node-version: 24.x
cache: 'npm'

- name: Install dependencies
run: |
npm run build-ci

- name: Install SST dependencies
run: |
cd prod/sst
npm install

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@5fd3084fc36e372ff1fff382a39b10d03659f355 # v2
with:
Expand All @@ -44,9 +53,6 @@ jobs:
- name: Login to Amazon ECR
run: |
aws ecr get-login-password --region $AWS_DEFAULT_REGION | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com
- name: Install dependencies
run: |
npm run build-ci
- name: Resolve Zero protocol versions
run: |
node --experimental-strip-types -e "
Expand Down Expand Up @@ -91,5 +97,4 @@ jobs:
OTEL_RESOURCE_ATTRIBUTES: ${{ vars.PROD_OTEL_RESOURCE_ATTRIBUTES }}
run: |
cd prod/sst
npm install
npx sst deploy --stage production
13 changes: 9 additions & 4 deletions .github/workflows/sst-sandbox-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ jobs:
node-version: 24.x
cache: 'npm'

- name: Install dependencies
run: |
npm run build-ci

- name: Install SST dependencies
run: |
cd prod/sst
npm install

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@5fd3084fc36e372ff1fff382a39b10d03659f355 # v2
with:
Expand All @@ -44,9 +53,6 @@ jobs:
- name: Login to Amazon ECR
run: |
aws ecr get-login-password --region $AWS_DEFAULT_REGION | docker login --username AWS --password-stdin ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.$AWS_DEFAULT_REGION.amazonaws.com
- name: Install dependencies
run: |
npm run build-ci
- name: Resolve Zero protocol versions
run: |
node --experimental-strip-types -e "
Expand Down Expand Up @@ -88,5 +94,4 @@ jobs:
ZERO_ADMIN_PASSWORD: ${{ secrets.ZERO_ADMIN_PASSWORD }}
run: |
cd prod/sst
npm install
npx sst deploy --stage sandbox
Loading