We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2fe50a commit 652876bCopy full SHA for 652876b
1 file changed
.github/workflows/test1.yml
@@ -8,12 +8,18 @@ jobs:
8
steps:
9
- name: hola mundo
10
run: echo "Hola Mundo"
11
+
12
+ - name: create results directory
13
+ run: mkdir results
14
15
- name: touch file
- run: touch saludo.txt
16
+ run: touch results/saludo.txt
17
18
- name: set text
- run: echo "Hola Mundo" >> saludo.txt
19
+ run: echo "Hola Mundo" >> results/saludo.txt
20
- - name: read file
- run: cat saludo.txt
21
+ - name: upload artifact
22
+ uses: actions/upload-artifact@v4
23
+ with:
24
+ name: test-file-upload
25
+ path: results/saludo.txt
0 commit comments