Skip to content

Commit

Permalink
Fix missing input parameters in cache string
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Fedurtsya <[email protected]>
  • Loading branch information
Sieg committed Aug 31, 2023
1 parent bc1301a commit 590cc74
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
with:
path: |
./*
key: installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
key: installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}

- name: Prepare container configuration
run: |
Expand Down Expand Up @@ -174,9 +174,9 @@ jobs:
with:
path: |
./*
key: installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
key: installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
restore-keys: |
installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
- name: Start containers
run: |
Expand Down Expand Up @@ -235,9 +235,9 @@ jobs:
with:
path: |
./*
key: installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
key: installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
restore-keys: |
installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
- name: Start containers
run: |
Expand Down Expand Up @@ -279,9 +279,9 @@ jobs:
with:
path: |
./*
key: installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
key: installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
restore-keys: |
installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
- name: Start containers
run: |
Expand Down Expand Up @@ -323,9 +323,9 @@ jobs:
with:
path: |
./*
key: installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
key: installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
restore-keys: |
installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
- name: Start containers
run: |
Expand Down Expand Up @@ -384,9 +384,9 @@ jobs:
with:
path: |
./*
key: installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
key: installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
restore-keys: |
installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
- name: Start containers
run: |
Expand Down Expand Up @@ -445,9 +445,9 @@ jobs:
with:
path: |
./*
key: installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
key: installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
restore-keys: |
installation-${{ join(inputs, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
installation-${{ join(inputs.*, '-') }}-${{ github.run_number }}-${{ github.run_attempt }}
- name: Download unit artifacts
uses: actions/download-artifact@v3
Expand Down

0 comments on commit 590cc74

Please sign in to comment.