Skip to content

chore(deps): bump handlebars from 4.7.8 to 4.7.9 (#131) #37

chore(deps): bump handlebars from 4.7.8 to 4.7.9 (#131)

chore(deps): bump handlebars from 4.7.8 to 4.7.9 (#131) #37

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Generate GitHub App token
id: app-token
uses: actions/create-github-app-token@v2
with:
app-id: ${{ vars.SCOPE3_WIZARD_APP_ID }}
private-key: ${{ secrets.SCOPE3_WIZARD_APP_PRIVATE_KEY }}
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ steps.app-token.outputs.token }}
# setup-node used directly: internal action doesn't support registry-url
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org'
- name: Update npm
run: npm install -g npm@latest
- name: Install dependencies
run: npm ci
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: npm run release
version: npm run version
commit: 'chore: version packages'
title: 'chore: version packages'
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}