Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/actions/make/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,14 @@ runs:
- name: compute artifact key
shell: bash -euo pipefail {0}
id: compute-key
env:
ARTIFACT_KEY: ${{ inputs.key }}
MAKE_RULE: ${{ inputs.make-rule }}
ARTIFACT_GENERATION: ${{ inputs.artifact-generation }}
run: |
files_hash=$($MAKE "${{ inputs.make-rule }}"-hash-deps)
files_hash=$($MAKE "${MAKE_RULE}"-hash-deps)
# Change the ARTIFACT_GENERATION repository variable to force fresh artifacts
echo "key=${{ inputs.key }}-$files_hash-${{ inputs.artifact-generation }}" >> "$GITHUB_OUTPUT"
echo "key=${ARTIFACT_KEY}-$files_hash-${ARTIFACT_GENERATION}" >> "$GITHUB_OUTPUT"
- name: branch name
id: branch-name
run: |
Expand Down
Loading