a reactive (signals based) hypermedia web framework (wip) stormlightlabs.github.io/volt/
hypermedia frontend signals
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: added npm publish action

+29 -2
+29
.github/workflows/publish-npm.yml
··· 1 + name: Release components package 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + 8 + jobs: 9 + build: 10 + runs-on: ubuntu-latest 11 + 12 + steps: 13 + - name: Checkout 14 + uses: actions/checkout@v4 15 + - uses: pnpm/action-setup@v4 16 + name: Install pnpm 17 + - name: Install Node.js 18 + uses: actions/setup-node@v3 19 + with: 20 + node-version-file: ".nvmrc" 21 + cache: pnpm 22 + registry-url: https://registry.npmjs.org 23 + - name: Install dependencies 24 + run: pnpm install --frozen-lockfile 25 + - name: Publish 26 + run: pnpm publish:npm 27 + working-directory: lib 28 + env: 29 + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
-2
.github/workflows/publish.yml .github/workflows/publish-jsr.yml
··· 1 - # .github/workflows/publish.yml 2 - 3 1 name: Publish 4 2 5 3 on: