Skip to content

Merge pull request #78 from brightdata/feat/2.6.0 #3

Merge pull request #78 from brightdata/feat/2.6.0

Merge pull request #78 from brightdata/feat/2.6.0 #3

Workflow file for this run

name: Release
on:
push:
tags: v*
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: 22
cache: "npm"
- run: npm ci
- run: npm audit signatures
- run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}