Skip to content

build(deps): bump commander from 14.0.3 to 15.0.0 (#986) #277

build(deps): bump commander from 14.0.3 to 15.0.0 (#986)

build(deps): bump commander from 14.0.3 to 15.0.0 (#986) #277

Workflow file for this run

name: Publish
permissions:
contents: read
on:
push:
branches:
- main
- beta
jobs:
release:
name: Publish
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for trusted publishing and npm provenance
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/create-github-app-token@v3
id: app-token
with:
app-id: ${{ secrets.COOLIFY_APP_ID }}
private-key: ${{ secrets.COOLIFY_PRIVATE_KEY }}
- name: Install
uses: ./.github/composite-actions/install
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Publish
run: npm run release
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}