Skip to content

Commit

Permalink
Keep the test validator running the whole time you're publishing snap…
Browse files Browse the repository at this point in the history
…shots
  • Loading branch information
steveluscher committed Mar 8, 2024
1 parent 069e000 commit 9f6c09a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish-prerelease-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@ jobs:
- name: Run Build Step (force)
run: pnpm turbo build --concurrency=100% --filter=\!@solana/web3.js --force=true

- name: Stop Test Validator
if: always() && steps.start-test-validator.outcome == 'success'
run: kill ${{ steps.start-test-validator.outputs.pid }}

- name: Configure NPM token
run: |
pnpm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
Expand All @@ -55,3 +51,7 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Stop Test Validator
if: always() && steps.start-test-validator.outcome == 'success'
run: kill ${{ steps.start-test-validator.outputs.pid }}

0 comments on commit 9f6c09a

Please sign in to comment.