Skip to content

ci(action): update actions/checkout digest to a5ac7e5 (#269) #282

ci(action): update actions/checkout digest to a5ac7e5 (#269)

ci(action): update actions/checkout digest to a5ac7e5 (#269) #282

Workflow file for this run

"on":
push:
branches:
- main
name: release
# These are recommended by the semantic-release docs: https://github.com/semantic-release/npm#npm-provenance
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 npm provenance
jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- run: npm ci
- run: npm run build
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.OCTOKITBOT_PAT }}
- run: >-
git push
https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
HEAD:refs/heads/v2.x
env:
GITHUB_TOKEN: ${{ secrets.OCTOKITBOT_PAT }}