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 419ffc4 commit e5d5d65Copy full SHA for e5d5d65
1 file changed
.github/workflows/vartest.yml
@@ -18,15 +18,16 @@ jobs:
18
- name: Download test artifact
19
uses: actions/download-artifact@v8
20
with:
21
- path: my_file.txt
+ skip-decompress: true
22
- name: Display structure of downloaded files
23
run: ls -R
24
- name: Create test file
25
- run: echo "Hello world" >> my_file.txt
+ run: echo "Hello world 2" >> my_file.txt
26
- name: Upload test artifact
27
uses: actions/upload-artifact@v7
28
29
- name: my-artifact
30
path: my_file.txt
31
retention-days: 1
32
overwrite: true
+ archive: false
33
+
0 commit comments