forked from milvus-io/milvus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enhance: show logs before download artifact in a workflow
Signed-off-by: Sammy Huang <[email protected]>
- Loading branch information
1 parent
aba2656
commit 8662240
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,6 +110,11 @@ jobs: | |
env: | ||
UBUNTU: 20.04 | ||
steps: | ||
- name: print working directory before download artifact | ||
shell: bash | ||
run: | | ||
pwd | ||
ls -lah | ||
- name: Download Artifact | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -155,6 +160,11 @@ jobs: | |
env: | ||
UBUNTU: 20.04 | ||
steps: | ||
- name: print working directory before download artifact | ||
shell: bash | ||
run: | | ||
pwd | ||
ls -lah | ||
- name: Download Artifact | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -199,6 +209,11 @@ jobs: | |
env: | ||
UBUNTU: 20.04 | ||
steps: | ||
- name: print working directory before download artifact | ||
shell: bash | ||
run: | | ||
pwd | ||
ls -lah | ||
- name: Download Artifact | ||
uses: actions/[email protected] | ||
with: | ||
|