diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 96db728f..28ee166f 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -100,6 +100,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: read + id-token: write steps: - name: Download release artifacts uses: actions/download-artifact@v4 @@ -110,7 +111,7 @@ jobs: - name: Setup node uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 registry-url: "https://registry.npmjs.org" - name: Install .NET SDK @@ -120,8 +121,6 @@ jobs: - name: Push package to npm if: inputs.skipNpmPublish != true - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_API_KEY }} run: | packages=(release-artifacts/*.tgz) test ${#packages[@]} -eq 1 diff --git a/package.json b/package.json index 3bc37177..ef8eace1 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,10 @@ "name": "@stackoverflow/stacks-icons", "description": "The icon library for Stack Overflow, Stack Overflow Careers, and the Stack Exchange Network.", "version": "6.9.0", - "repository": "https://github.com/StackExchange/Stacks-Icons", + "repository": { + "type": "git", + "url": "git+https://github.com/StackExchange/Stacks-Icons.git" + }, "license": "MIT", "type": "module", "main": "dist/index.umd.cjs",