Add snow precipitation to WeatherLayer #3
Workflow file for this run
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: | |
| tags: | |
| - "v*" | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write # required for JSR OIDC authentication | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: v2.x | |
| - run: deno install # materialize node_modules (phaser) so tsc can resolve types | |
| - run: deno task dts:check # regenerate + fail the release if committed mod.d.ts is stale | |
| - run: deno publish # tree is clean (dts:check verified it), so no --allow-dirty |