From 08716277eb105dc693d9b4ee9f0e7dc84110f7ad Mon Sep 17 00:00:00 2001 From: Luke Else Date: Mon, 15 Sep 2025 16:30:47 +0100 Subject: [PATCH] fix: Changed scope of repo to still allow pulling from main node repos --- .gitea/workflows/deploy.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 1db805a..7a6b684 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -16,6 +16,8 @@ jobs: uses: actions/setup-node@v3 with: node-version: '20' + registry-url: 'https://git.luke-else.co.uk/api/packages/luke-else/npm/' + scope: '@luke-else' - uses: pnpm/action-setup@v3 name: Install pnpm @@ -29,4 +31,4 @@ jobs: - name: Publish to Gitea Packages env: NODE_AUTH_TOKEN: ${{ secrets.CONTAINER_REGISTRY_PASSKEY }} - run: npm publish --registry https://git.luke-else.co.uk/api/packages/luke-else/npm/ \ No newline at end of file + run: pnpm publish \ No newline at end of file