flowbite-qwik-cli@0.0.6 #49
Workflow file for this run
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
name: Release package on NPM | |
on: | |
release: | |
types: [created] | |
jobs: | |
publish-npm: | |
if: startsWith(github.event.release.tag_name, 'flowbite-qwik-cli@') | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
registry-url: https://registry.npmjs.org | |
- run: pnpm --filter flowbite-qwik-cli install --frozen-lockfile | |
- run: pnpm --filter flowbite-qwik-cli build | |
- run: pnpm --filter flowbite-qwik-cli publish --provenance --access public --no-git-checks | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPMJS_TOKEN}} |