Skip to content

Commit

Permalink
fix lfs artifacts action (#1598)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphal authored Aug 30, 2024
1 parent 8c5267d commit 368233b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/actions/lfs-copy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,19 @@ runs:
if: |
steps.cache-lfs.outputs.cache-hit != 'true' &&
inputs.workflow_label == 'producer'
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
with:
name: lfs-data
path: lfs_data
overwrite: true
include-hidden-files: true

- name: Download LFS artifact
id: download-artifact
if: |
steps.cache-lfs.outputs.cache-hit != 'true' &&
inputs.workflow_label == 'consumer'
uses: actions/download-artifact@master
uses: actions/download-artifact@v4
continue-on-error: true
with:
name: lfs-data
Expand Down

0 comments on commit 368233b

Please sign in to comment.