Skip to content

Commit

Permalink
fix action use
Browse files Browse the repository at this point in the history
  • Loading branch information
harrydowning committed Aug 29, 2024
1 parent f895d7e commit 55b2989
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: npm run generate
- run: "[[ -z $(git status --porcelain) ]]"
Expand All @@ -23,6 +24,7 @@ jobs:
needs: release-check
if: contains(github.event.head_commit.message, '[release]') && !contains(github.event.head_commit.message, '[pre-release]')
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: npm run build
- run: npx vsce package
Expand All @@ -38,6 +40,7 @@ jobs:
needs: release-check
if: contains(github.event.head_commit.message, '[pre-release]') && !contains(github.event.head_commit.message, '[release]')
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: npm run build
- run: npx vsce package --pre-release
Expand Down

0 comments on commit 55b2989

Please sign in to comment.