From 6a561a8000dbc3b1ed8813468c9e3cabc5e87de2 Mon Sep 17 00:00:00 2001 From: Rainnny7 Date: Sun, 14 Apr 2024 17:18:40 -0400 Subject: [PATCH] will this work? --- .gitea/workflows/deploy-lib.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/deploy-lib.yml b/.gitea/workflows/deploy-lib.yml index e979945..4e0ef43 100644 --- a/.gitea/workflows/deploy-lib.yml +++ b/.gitea/workflows/deploy-lib.yml @@ -25,20 +25,19 @@ jobs: # Setup Bun - name: Setup Bun uses: oven-sh/setup-bun@v1 + with: + registry-url: "https://registry.npmjs.org" # Install Dependencies - name: Install Dependencies run: bun install --frozen-lockfile + env: + BUN_AUTH_TOKEN: ${{ secrets.PUBLISH_NPM_TOKEN }} # Run Tests - name: Run Tests run: bun test - - name: debug - run: echo ${{ secrets.PUBLISH_NPM_TOKEN }} - # Publish to NPM - name: Publish to NPM run: npm publish - env: - NODE_AUTH_TOKEN: ${{ secrets.PUBLISH_NPM_TOKEN }}