Skip to content

Commit

Permalink
ci: try to fix nightly build
Browse files Browse the repository at this point in the history
Signed-off-by: simonsan <[email protected]>
  • Loading branch information
simonsan committed Jan 1, 2024
1 parent 25dd506 commit 5af6b5c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ jobs:
steps:
- name: Download all workflow run artifacts
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3
with:
path: artifacts
- name: Releasing nightly builds
shell: bash
run: |
Expand Down Expand Up @@ -148,7 +150,7 @@ jobs:
mkdir -p $WORKING_DIR/$DEST_DIR
# do the copy
for i in binary-*; do cp -a $i/* $WORKING_DIR/$DEST_DIR; done
for artifact_dir in artifacts/binary-*; do cp -a $artifact_dir/* $WORKING_DIR/$DEST_DIR; done
# create the commit
cd $WORKING_DIR
Expand Down

0 comments on commit 5af6b5c

Please sign in to comment.