version number bump, i'm useful! #300
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: Cache Busting | |
on: | |
push: | |
branches: | |
- "main" | |
- "testing" | |
pull_request: | |
branches: [main, testing] | |
types: [opened, synchronize, closed] | |
jobs: | |
update_hashes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Update hashes in html files | |
run: bash .devtools/updatehashes.sh | |
- name: Commit | |
uses: EndBug/[email protected] | |
with: | |
committer_name: Github Actions | |
committer_email: [email protected] | |
message: "Fixed resource hashes" |