Skip to content

update GitHub Actions workflows to use actions/checkout@v6 and action… #32

update GitHub Actions workflows to use actions/checkout@v6 and action…

update GitHub Actions workflows to use actions/checkout@v6 and action… #32

Workflow file for this run

name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
if: github.repository == 'vtbag/cam-shaft'
permissions:
contents: write
pull-requests: write
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 24
- run: npm ci
- name: Create Release Pull Request
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}