Skip to content

Commit

Permalink
Merge pull request #4 from theapexlab/fix-stack-cleanup
Browse files Browse the repository at this point in the history
Fix deleting pr deployment stack on pr close
  • Loading branch information
BaDo2001 authored Oct 26, 2023
2 parents 98e768d + ddc0dc2 commit 746d981
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 29 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/pr-closed.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Destroy PR env

on:
pull_request:
types: [closed]
branches: [main]

jobs:
destroy:
runs-on: ubuntu-latest

steps:
- name: Inject slug variables
uses: rlespinasse/github-slug-action@v4

- run: echo "STAGE=pr-${{ github.event.number }}-${{ env.GITHUB_HEAD_REF_SLUG }}" >> $GITHUB_ENV

- name: Checkout repository
uses: actions/checkout@v3

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_STAGING }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_STAGING }}
aws-region: eu-central-1

- uses: actions/setup-node@v3
with:
node-version: "18"

- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false

- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install Dependencies
run: pnpm i

- name: Delete stack
run: npx sst remove --stage ${{ env.STAGE }}
30 changes: 1 addition & 29 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ name: PR checks

on:
pull_request:
types: [opened, synchronize, closed]
types: [opened, synchronize]
branches: [main]

jobs:
lint-build-and-test:
if: github.event.action == 'opened' || github.event.action == 'synchronize'
runs-on: ubuntu-latest
steps:
- name: Inject slug variables
Expand Down Expand Up @@ -93,30 +92,3 @@ jobs:
VITE_SLACK_BOT_USER_ID: ${{ secrets.SLACK_BOT_USER_ID_TEST }}
VITE_CORE_SLACK_CHANNEL_ID: ${{ secrets.CORE_SLACK_CHANNEL_ID_TEST }}
VITE_SLACK_DM_ID: ${{ secrets.SLACK_DM_ID_TEST }}

destroy:
if: github.event.action == 'closed'
runs-on: ubuntu-latest

steps:
- name: Inject slug variables
uses: rlespinasse/github-slug-action@v4

- run: echo "STAGE=pr-${{ github.event.number }}-${{ env.GITHUB_HEAD_REF_SLUG }}" >> $GITHUB_ENV

- name: Checkout repository
uses: actions/checkout@v3

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_STAGING }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_STAGING }}
aws-region: eu-central-1

- uses: actions/setup-node@v3
with:
node-version: "18"

- name: Delete stack
run: npx sst remove --stage ${{ env.STAGE }}

0 comments on commit 746d981

Please sign in to comment.