CI
All checks were successful
Lint / lint (push) Successful in 11s

This commit is contained in:
Julien Valverdé
2025-01-17 03:36:31 +01:00
parent 22c90f591b
commit 240c83eacb
3 changed files with 10 additions and 6 deletions

View File

@@ -15,15 +15,18 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: "20"
registry-url: "https://registry.npmjs.org"
- name: Clone repo
uses: actions/checkout@v4
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Build
run: npm run build
run: |
cd packages/reffuse
bun run build
- name: Publish
run: |
cd packages/reffuse
npm config set @thilawyn:registry https://git.valverde.cloud/api/packages/thilawyn/npm/
npm config set -- //git.valverde.cloud/api/packages/thilawyn/npm/:_authToken "${{ vars.NODE_AUTH_TOKEN }}"
npm publish
npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}