Skip to content

Commit

Permalink
fix(cache): add architecture to cache key (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli authored Jan 7, 2025
1 parent 86b8ff7 commit 88a4814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ runs:
id: cache-key
shell: bash
run: |
key="modflow-${{ runner.os }}-${{ inputs.owner }}-${{ inputs.repo }}-${{ inputs.tag }}-${{ steps.get-date.outputs.date }}"
key="modflow-${{ runner.os }}-${{ runner.arch }}-${{ inputs.owner }}-${{ inputs.repo }}-${{ inputs.tag }}-${{ steps.get-date.outputs.date }}"
if [[ "${{ inputs.subset }}" != "" ]]; then
subset="${{ inputs.subset }}"
subset=${subset//,/-} # replace commas with dashes
Expand Down

0 comments on commit 88a4814

Please sign in to comment.