Skip to content

Commit

Permalink
Merge pull request #287 from gerlero/actions
Browse files Browse the repository at this point in the history
Update variable naming
  • Loading branch information
gerlero authored Oct 9, 2024
2 parents 8839eeb + 8ab0c4d commit 1f634dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ jobs:
- name: Generate caching keys
id: keys
run: |
DEPS_KEY="build-${{ env.OPENFOAM }}-${{ inputs.build-os }}-${{ hashFiles('make_deps.txt', 'Brewfile', 'scripts/bundle_deps.py', 'brew_versions.txt') }}"
BUILD_KEY="$DEPS_KEY-${{ hashFiles('make_build.txt', 'scripts/configure.sh', 'scripts/relativize_install_names.py') }}"
echo "deps-key=$DEPS_KEY" >> "$GITHUB_OUTPUT"
echo "build-key=$BUILD_KEY" >> "$GITHUB_OUTPUT"
deps_key="build-${{ env.OPENFOAM }}-${{ inputs.build-os }}-${{ hashFiles('make_deps.txt', 'Brewfile', 'scripts/bundle_deps.py', 'brew_versions.txt') }}"
build_key="$deps_key-${{ hashFiles('make_build.txt', 'scripts/configure.sh', 'scripts/relativize_install_names.py') }}"
echo "deps-key=$deps_key" >> "$GITHUB_OUTPUT"
echo "build-key=$build_key" >> "$GITHUB_OUTPUT"
- name: Look up cached deps
id: cache
uses: actions/cache/restore@v4
Expand Down

0 comments on commit 1f634dc

Please sign in to comment.