build(deps): Bump @actions/github from 5.1.1 to 6.0.0 #358
Workflow file for this run
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
# Always rebuild the distributable action, so that we can release from `main` at any point | |
# This doubles-up as a test, and also prevents tampering! | |
name: Rebuild | |
on: | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
rebuild: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-node@master | |
- name: Install Dependencies | |
run: npm ci --ignore-scripts | |
- name: Build | |
run: npm run build | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
file_pattern: --force dist/* | |
commit_message: "chore: 🛠 Rebuild action!" |