Skip to content

Commit

Permalink
Fix environment version variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasas993 committed Nov 14, 2024
1 parent 5ae005a commit 278cf43
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,9 +288,9 @@ jobs:
with:
path: |
${{ env.maven_local_path }}
key: ${{ runner.os }}-m2-opensearch-${{ opensearch_version }}-plugin-${{ hashFiles('**.sha1') }}
key: ${{ runner.os }}-m2-opensearch-${{ env.opensearch_version }}-plugin-${{ hashFiles('**.sha1') }}
restore-keys: |
${{ runner.os }}-m2-opensearch-plugin-${{ opensearch_version }}-
${{ runner.os }}-m2-opensearch-plugin-${{ env.opensearch_version }}-
- if: ${{steps.pre-assemble-cache-m2-opensearch-plugins.outputs.cache-hit == 'true'}}
name: PRE Cache ${{ env.maven_local_path }} success
Expand All @@ -309,9 +309,9 @@ jobs:
with:
path: |
${{ env.maven_local_path }}
key: ${{ runner.os }}-m2-opensearch-${{ opensearch_version }}-plugin-${{ hashFiles('**.sha1') }}
key: ${{ runner.os }}-m2-opensearch-${{ env.opensearch_version }}-plugin-${{ hashFiles('**.sha1') }}
restore-keys: |
${{ runner.os }}-m2-opensearch-plugin-${{ opensearch_version }}-
${{ runner.os }}-m2-opensearch-plugin-${{ env.opensearch_version }}-
- if: ${{steps.post-assemble-cache-m2-opensearch-plugins.outputs.cache-hit == 'true'}}
name: POST Cache ${{ env.maven_local_path }} success
Expand Down

0 comments on commit 278cf43

Please sign in to comment.