Skip to content

Commit e5d5d65

Browse files
committed
Retry downloading
1 parent 419ffc4 commit e5d5d65

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/vartest.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,16 @@ jobs:
1818
- name: Download test artifact
1919
uses: actions/download-artifact@v8
2020
with:
21-
path: my_file.txt
21+
skip-decompress: true
2222
- name: Display structure of downloaded files
2323
run: ls -R
2424
- name: Create test file
25-
run: echo "Hello world" >> my_file.txt
25+
run: echo "Hello world 2" >> my_file.txt
2626
- name: Upload test artifact
2727
uses: actions/upload-artifact@v7
2828
with:
29-
name: my-artifact
3029
path: my_file.txt
3130
retention-days: 1
3231
overwrite: true
32+
archive: false
33+

0 commit comments

Comments
 (0)