Normalise audio #1
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: Normalise audio | |
on: | |
workflow_dispatch: | |
jobs: | |
normalise-audio: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install normalize-audio | |
run: sudo apt-get install -y normalize-audio | |
- name: Run script | |
run: ./scripts/normalise_audio.sh | |
- name: commit | |
uses: EndBug/add-and-commit@v9 | |
with: | |
add: 'assets/*' | |
message: "Update audio files" |