Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX(develop): Update workflow caching to fix faiiling github action used before #778

Merged
merged 7 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: upload cache script
  • Loading branch information
tenequm committed Jul 4, 2024
commit ffaad53e2589b46045c12f8aca06d3d3277913af
1 change: 1 addition & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ jobs:
process_gcloudignore: false

- name: Upload cargo build cache
shell: bash
run: |
set -x
CACHE_KEY="${{ steps.cache.outputs.cache_key }}"
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/reusable-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ jobs:

- name: Upload cargo build cache
if: inputs.cache-enabled && steps.cache.outputs.cache_found == 'false'
shell: bash
run: |
set -x
CACHE_KEY="${{ steps.cache.outputs.cache_key }}"
Expand Down Expand Up @@ -215,6 +216,7 @@ jobs:

- name: Upload cargo build cache
if: inputs.cache-enabled && steps.cache.outputs.cache_found == 'false'
shell: bash
run: |
set -x
CACHE_KEY="${{ steps.cache.outputs.cache_key }}"
Expand Down Expand Up @@ -283,6 +285,7 @@ jobs:

- name: Upload cargo build cache
if: inputs.cache-enabled && steps.cache.outputs.cache_found == 'false'
shell: bash
run: |
set -x
CACHE_KEY="${{ steps.cache.outputs.cache_key }}"
Expand Down Expand Up @@ -363,6 +366,7 @@ jobs:

- name: Upload cargo build cache
if: inputs.cache-enabled && steps.cache.outputs.cache_found == 'false'
shell: bash
run: |
set -x
CACHE_KEY="${{ steps.cache.outputs.cache_key }}"
Expand Down Expand Up @@ -439,6 +443,7 @@ jobs:

- name: Upload cargo build cache
if: inputs.cache-enabled && steps.cache.outputs.cache_found == 'false'
shell: bash
run: |
set -x
CACHE_KEY="${{ steps.cache.outputs.cache_key }}"
Expand Down Expand Up @@ -513,6 +518,7 @@ jobs:

- name: Upload cargo build cache
if: inputs.cache-enabled && steps.cache.outputs.cache_found == 'false'
shell: bash
run: |
set -x
CACHE_KEY="${{ steps.cache.outputs.cache_key }}"
Expand Down Expand Up @@ -620,6 +626,7 @@ jobs:

- name: Upload cargo build cache
if: inputs.cache-enabled && steps.cache.outputs.cache_found == 'false'
shell: bash
run: |
set -x
CACHE_KEY="${{ steps.cache.outputs.cache_key }}"
Expand Down Expand Up @@ -705,6 +712,7 @@ jobs:

- name: Upload cargo build cache
if: inputs.cache-enabled && steps.cache.outputs.cache_found == 'false'
shell: bash
run: |
set -x
CACHE_KEY="${{ steps.cache.outputs.cache_key }}"
Expand Down
Loading