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
18 changes: 12 additions & 6 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,21 +62,27 @@ jobs:
needs: [ check-release ]
name: Release NPM
runs-on: ubuntu-latest
permissions:
Comment thread
gnakaki-vs marked this conversation as resolved.
id-token: write
contents: read
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with: { submodules: 'recursive', fetch-depth: 0 }

# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
node-version: '24.x'
registry-url: 'https://registry.npmjs.org'
scope: ''

- name: Upgrade npm to support OIDC
run: |
npm install -g npm@11.12.0
node --version
npm --version

- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

release-docker-hub:
needs: [ check-release ]
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "conlink",
"version": "2.6.2",
"version": "2.6.4",
"description": "conlink - Declarative Low-Level Networking for Containers",
"repository": "https://github.com/Viasat/conlink",
"license": "SEE LICENSE IN LICENSE",
Expand Down
Loading