Skip to content

chore(main): release 1.0.3 #6

chore(main): release 1.0.3

chore(main): release 1.0.3 #6

Workflow file for this run

name: Build
on:
pull_request:
paths: CHANGELOG.md
permissions:
contents: write
pull-requests: write
jobs:
build:
if: startsWith(github.head_ref, 'release-please')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: 'npm'
node-version-file: '.node-version'
- run: npm ci
- name: Run build script
id: build
run: npm run build
- name: Commit changes
if: steps.build.conclusion == 'success'
uses: stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d # v5.0.0
with:
file_pattern: 'dist/*'
commit_author: '${{ github.actor }} <${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com>'
commit_message: 'chore: update dist files'