Skip to content

fix(deps): update module helm.sh/helm/v3 to v3.17.1 #356

fix(deps): update module helm.sh/helm/v3 to v3.17.1

fix(deps): update module helm.sh/helm/v3 to v3.17.1 #356

Workflow file for this run

name: Build SDK
on:
push:
branches:
- 'main'
paths:
- sdk/**
tags:
- '*'
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./sdk/js
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup node.js
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:
node-version: '22'
cache: npm
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Build application
run: npm run build
- name: Publish to npmjs
if: ${{ startsWith(github.ref, 'refs/tags/') }}
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }}