.github/workflows/publish.yml #5
This file contains 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
on: | |
workflow_dispatch: | |
push: | |
tags: "v*.*.*" | |
jobs: | |
tests: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Deno (v2) | |
uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: Read version | |
id: read-version | |
run: | | |
version=0.0.9 | |
echo "::set-output name=version::$version" | |
- name: Write jsr.json | |
uses: devops-actions/[email protected] | |
with: | |
json: '{"name": "@tj/webauthn-json", "version": "${{steps.read-version.outputs.version}}", "exports": "./main.js"}' | |
filename: "jsr.json" | |
- name: Publish to JSR | |
run: deno publish --dry-run |