Skip to content

Commit 1be1575

Browse files
committed
Test GHA.
1 parent 0694b13 commit 1be1575

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

.github/workflows/blank.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,15 @@ jobs:
2626
- uses: actions/checkout@v3
2727

2828
# 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
29+
- name: do it all
3430
run: |
35-
echo Add other actions to build,
36-
echo test, and deploy your project.
31+
mkdir nonsense
32+
cd nonsense
33+
cat "<h1>hello</h1>" > index.html
34+
cd ..
35+
tar czvf nonsense.tar.gz nonsense
36+
37+
- uses: actions/upload-pages-artifact
38+
with:
39+
name: nonsense.tar.gz
40+

0 commit comments

Comments
 (0)