diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index 1b33cdb..c251086 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -23,6 +23,7 @@ jobs: run: npm 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 diff --git a/.gitea/workflows/test-build.yaml b/.gitea/workflows/test-build.yaml index 0f61dc5..bb89a21 100644 --- a/.gitea/workflows/test-build.yaml +++ b/.gitea/workflows/test-build.yaml @@ -18,6 +18,8 @@ jobs: - name: Install dependencies run: bun install --frozen-lockfile - name: Build - run: npm run build + run: bun run build - name: Pack - run: npm pack --dry-run + run: | + cd packages/reffuse + npm pack --dry-run