Skip to content

Update README.md

Update README.md #55

Workflow file for this run

name: Build Action
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: qoomon/actions--setup-git-user@v1
# build the action
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- run: npm ci
- run: npm run build
# commit and push build output
- run: |
git add -f dist/
git commit -m 'chore: build action' || true
git push