Skip to content

fix(deps): bump tar from 7.5.10 to 7.5.11 (#29) #31

fix(deps): bump tar from 7.5.10 to 7.5.11 (#29)

fix(deps): bump tar from 7.5.10 to 7.5.11 (#29) #31

Workflow file for this run

name: cd
on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
id-token: write
jobs:
publish:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- id: release
uses: googleapis/release-please-action@v4.4.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
config-file: .github/release-please/config.json
manifest-file: .github/release-please/manifest.json
- uses: actions/setup-node@v6.2.0
if: ${{ steps.release.outputs.release_created }}
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org'
- run: npm install -g npm@latest
if: ${{ steps.release.outputs.release_created }}
- run: npm ci
if: ${{ steps.release.outputs.release_created }}
- run: npm run type
if: ${{ steps.release.outputs.release_created }}
- run: npm publish --tag latest --provenance --access public
if: ${{ steps.release.outputs.release_created }}