Skip to content

chore(deps): update all github actions (#493) #875

chore(deps): update all github actions (#493)

chore(deps): update all github actions (#493) #875

Workflow file for this run

name: Release
on:
pull_request:
merge_group:
push:
branches: [ main ]
permissions: read-all
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
id: release-token
with:
app-id: ${{ vars.RELEASE_APP_ID }}
private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }}
permission-contents: write # to be able to publish a GitHub release
permission-issues: write # to be able to comment on released issues
permission-pull-requests: write # to be able to comment on released pull requests
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
token: ${{ steps.release-token.outputs.token }}
fetch-depth: 0
- uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v4.4.0
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version-file: package.json
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'
- run: pnpm install
- run: pnpm run release
env:
GH_TOKEN: ${{ steps.release-token.outputs.token }}