Skip to content

Commit

Permalink
chore: Fix teardown of Linearlite example (#2244)
Browse files Browse the repository at this point in the history
  • Loading branch information
msfstef authored Jan 22, 2025
1 parent 7c72c1e commit 9aeb122
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/teardown_examples_pr_stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Teardown Examples PR stack

on:
pull_request:
paths: ['examples/*/**']
paths: ["examples/*/**"]
types: [closed]

concurrency:
Expand Down Expand Up @@ -32,7 +32,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: ".tool-versions"
cache: 'pnpm'
cache: "pnpm"

- name: Install dependencies
run: pnpm install --frozen-lockfile
Expand All @@ -46,15 +46,15 @@ jobs:
sst-cache-${{ runner.os }}
- name: Remove Linearlite
working-directory: examples/linearlite
working-directory: examples/linearlite-read-only
run: |
export PR_NUMBER=${{ github.event.number }}
echo "Removing stage pr-$PR_NUMBER"
pnpm sst remove --stage "pr-$PR_NUMBER"
export PR_NUMBER=${{ github.event.number }}
echo "Removing stage pr-$PR_NUMBER"
pnpm sst remove --stage "pr-$PR_NUMBER"
- name: Remove NextJs example
working-directory: examples/nextjs-example
run: |
export PR_NUMBER=${{ github.event.number }}
echo "Removing stage pr-$PR_NUMBER"
pnpm sst remove --stage "pr-$PR_NUMBER"
export PR_NUMBER=${{ github.event.number }}
echo "Removing stage pr-$PR_NUMBER"
pnpm sst remove --stage "pr-$PR_NUMBER"

0 comments on commit 9aeb122

Please sign in to comment.