Skip to content

build(deps): bump actions/setup-node from 6 to 7 (#1097) #352

build(deps): bump actions/setup-node from 6 to 7 (#1097)

build(deps): bump actions/setup-node from 6 to 7 (#1097) #352

Workflow file for this run

name: Publish Package
permissions:
contents: read
on:
push:
branches:
- main
- beta
jobs:
release:
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@v7
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 }}