🐛 fix typo #38
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: update aqua checksum | ||
on: | ||
push: | ||
branches: | ||
- "main" | ||
pull_request: | ||
paths: | ||
- "common/config/aquaproj-aqua/*" | ||
- ".github/workflows/update-checksum.yaml" | ||
jobs: | ||
update-aqua-checksum: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ~/.local/share/aquaproj-aqua | ||
key: v1-aqua-installer-${{runner.os}}-${{runner.arch}}-${{hashFiles('**/aqua.yaml')}} | ||
restore-keys: | | ||
v1-aqua-installer-${{runner.os}}-${{runner.arch}}- | ||
- uses: aquaproj/[email protected] # renovate: depName=aquaproj/aqua-installer | ||
with: | ||
aqua_version: v2.16.4 # renovate: depName=aquaproj/aqua | ||
working_directory: common/config/aquaproj-aqua | ||
- run: aqua update-checksum -deep -prune | ||
working-directory: common/config/aquaproj-aqua | ||
- run: git diff --exit-code | ||
id: diff | ||
continue-on-error: true | ||
- run: | | ||
git config --global user.name "GitHub Actions" | ||
git config --global user.email "[email protected]" | ||
git commit --author . -m "chore(aqua): update checksum" | ||
git push | ||
if: steps.diff.outcome == "failure" | ||
Check failure on line 37 in .github/workflows/update-checksum.yaml GitHub Actions / update aqua checksumInvalid workflow file
|