Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading