fix JSR publish workflow (#499) #31
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish to JSR | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Set up Deno | |
| uses: denoland/setup-deno@v1 | |
| with: | |
| deno-version: v2.x | |
| - name: Check Format | |
| run: deno fmt --check | |
| - name: Format | |
| run: deno fmt | |
| - name: Lint | |
| run: deno lint | |
| - name: Build tests container | |
| run: docker compose build tests | |
| - name: Run tests | |
| run: docker compose run tests | |
| - name: Run doc tests | |
| run: docker compose run doc_tests | |
| - name: Publish (dry run) | |
| if: startsWith(github.ref, 'refs/tags/') == false | |
| run: deno publish --dry-run --allow-dirty | |
| - name: Publish (real) | |
| if: startsWith(github.ref, 'refs/tags/') | |
| run: deno publish --allow-dirty |