We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3acaa5 commit 524d201Copy full SHA for 524d201
action.yml
@@ -72,7 +72,7 @@ runs:
72
shell: bash
73
run: echo "lfs_sha=${{env.lfs_data_cache_sha}}" >> $GITHUB_OUTPUT
74
75
- - name: Checkout LFS data for artifact producer
+ - name: Checkout repository for artifact producer
76
if: |
77
steps.cache-lfs.outputs.cache-hit != 'true' &&
78
inputs.type == 'producer'
@@ -84,6 +84,13 @@ runs:
84
fetch-depth: 1
85
lfs: true
86
87
+ - name: Pull LFS data for artifact producer
88
+ if: |
89
+ steps.cache-lfs.outputs.cache-hit != 'true' &&
90
+ inputs.type == 'producer'
91
+ working-directory: ${{github.workspace}}/lfs_data_cache/lfs_data
92
+ run: git lfs fetch --all && git lfs checkout
93
+
94
- name: Upload LFS artifact
95
if: inputs.type == 'producer'
96
uses: actions/upload-artifact@v4
0 commit comments