Skip to content

Commit

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

0 comments on commit f895d7e

Please sign in to comment.