Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ on:
release:
types: [published]

permissions:
id-token: write # Required for OIDC
contents: read

jobs:
publish-npm:
runs-on: ubuntu-18.04
Expand All @@ -12,7 +16,7 @@ jobs:
with:
node-version: 16
registry-url: https://registry.npmjs.org/
cache: 'yarn'
cache: "yarn"
- name: Check release validity
run: sh .github/scripts/check-release.sh
- name: Check tag format
Expand Down
Loading