Skip to content

chore(deps): update actions/checkout action to v4 #65

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #65

Workflow file for this run

name: Build
on: push
jobs:
build:
if:
contains(github.event.pull_request.user.login, 'renovate') != 'true' &&
contains(github.actor, 'renovate') != 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build and commit build
run: |
git config user.name github-actions
git config user.email [email protected]
npm install --frozen-lockfile
npm run build
git add dist/
git diff-index --quiet HEAD || git commit -m "ci: generate build"
git push