Skip to content

Commit

Permalink
Merge pull request #104 from effigies/ci/oidc-publish
Browse files Browse the repository at this point in the history
chore(ci): Publish to JSR on tag
  • Loading branch information
effigies authored Nov 12, 2024
2 parents d491d1b + b9871f6 commit 58c8d7b
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/deno_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,25 @@ jobs:
deno-version: v2.x
- run: deno publish --dry-run

publish:
runs-on: ubuntu-latest
needs: [test, publish-dry-run]
if: github.ref_type == 'tag'
permissions:
contents: read
id-token: write
attestations: write
steps:
- uses: actions/checkout@v4
- name: Check tag matches ${{ github.ref_name }}
run: jq -e ".version[:1] != \"v\" and .version==\"$TAG\"" deno.json
env:
TAG: ${{ github.ref_name }}
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- run: deno publish

deploy:
needs: [build]
runs-on: ubuntu-latest
Expand Down

0 comments on commit 58c8d7b

Please sign in to comment.