Skip to content

Merge pull request #329 from nodeshift/pacostas-patch-1 #131

Merge pull request #329 from nodeshift/pacostas-patch-1

Merge pull request #329 from nodeshift/pacostas-patch-1 #131

on:
push:
branches:
- main
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@v5
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
package-name: kube-service-bindings
- uses: actions/checkout@v6
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v6
with:
node-version: 26
registry-url: 'https://registry.npmjs.org'
if: ${{ steps.release.outputs.release_created }}
- run: npm ci
if: ${{ steps.release.outputs.release_created }}
- run: npm test
if: ${{ steps.release.outputs.release_created }}
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NODESHIFT_RELEASES_TOKEN}}
if: ${{ steps.release.outputs.release_created }}