Merge pull request #88 from kucher-mx/close-update #68
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build dist and example | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
update_dist: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 18 | |
- run: npm ci | |
- run: npm run build | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Apply automatic changes | |
# file_pattern: src/*.js dist/*.js dist/*.css example/* index.html |