Skip to content

Commit d1a06a0

Browse files
committed
actions: mostrar contenido del test (artifact)
1 parent 8618bb1 commit d1a06a0

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/test_suma.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,15 @@ jobs:
2727
uses: actions/upload-artifact@v4
2828
with:
2929
name: test-suma
30-
path: mi_test.txt
30+
path: mi_test.txt
31+
32+
job-download-artifact:
33+
runs-on: ubuntu-latest
34+
steps:
35+
- name: descarga artifact
36+
uses: actions/download-artifact@v4
37+
with:
38+
name: test-suma
39+
40+
- name: muestra el contenido del artifact
41+
run: cat mi_test.txt

0 commit comments

Comments
 (0)