ci(release): remove publish workflow

This commit is contained in:
Patrick Wozniak
2026-06-02 10:59:56 +02:00
committed by GitHub
parent 6aac2bdbcf
commit a35c2b1e83
3 changed files with 2 additions and 26 deletions
-22
View File
@@ -1,22 +0,0 @@
name: Publish package
on:
release:
types: [published]
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org
- run: npm publish --access public --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}