5972e1d761
test7 Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com> test8 Signed-off-by: Victor Seiji Hariki <victorseijih@gmail.com> Fixed resource hashes
26 lines
650 B
YAML
26 lines
650 B
YAML
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/add-and-commit@v9.1.1
|
|
with:
|
|
committer_name: Github Actions
|
|
committer_email: actions@github.com
|
|
message: "Fixed resource hashes"
|