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 b6376b8 commit 4bea3a6Copy full SHA for 4bea3a6
1 file changed
.github/workflows/vartest.yml
@@ -15,10 +15,17 @@ jobs:
15
test:
16
runs-on: ubuntu-latest
17
steps:
18
+ - name: Download test artifact
19
+ uses: action/download-artifact@v8
20
+ with:
21
+ name: my-artifact
22
+ path: my_file.txt
23
+ - name: Display structure of downloaded files
24
+ run: ls -R
25
- name: Create test file
- run: echo "Hello world" > my_file.txt
26
+ run: echo "Hello world" >> my_file.txt
27
- name: Upload test artifact
- uses: actions/upload-artifact@v4
28
+ uses: actions/upload-artifact@v7
29
with:
30
name: my-artifact
31
path: my_file.txt
0 commit comments