We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0694b13 commit 1be1575Copy full SHA for 1be1575
.github/workflows/blank.yml
@@ -26,11 +26,15 @@ jobs:
26
- uses: actions/checkout@v3
27
28
# Runs a single command using the runners shell
29
- - name: Run a one-line script
30
- run: echo Hello, world!
31
-
32
- # Runs a set of commands using the runners shell
33
- - name: Run a multi-line script
+ - name: do it all
34
run: |
35
- echo Add other actions to build,
36
- echo test, and deploy your project.
+ mkdir nonsense
+ cd nonsense
+ cat "<h1>hello</h1>" > index.html
+ cd ..
+ tar czvf nonsense.tar.gz nonsense
+
37
+ - uses: actions/upload-pages-artifact
38
+ with:
39
+ name: nonsense.tar.gz
40
0 commit comments