We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44d3413 commit e35d05aCopy full SHA for e35d05a
1 file changed
.github/workflows/check_jekyll_build.yml
@@ -4,20 +4,26 @@ on:
4
branches: [ master ]
5
6
jobs:
7
- # Job to test that web pages build
8
jekyll_build:
9
name: Jekyll build of web pages
10
runs-on: ubuntu-latest
11
12
steps:
+ # https://github.com/actions/checkout
13
- name: Checkout
14
uses: actions/checkout@v2
15
16
+ # https://github.com/marketplace/actions/build-jekyll
17
- name: Build with Jekyll
18
uses: jerryjvl/jekyll-build-action@v1
19
20
+ # workaround https://github.com/actions/upload-artifact/issues/38
21
+ - name: tarball
22
+ run: tar czf site.tar.gz ./_site/
23
+
24
+ # https://github.com/actions/upload-artifact
25
- name: Upload Website artifact
26
uses: actions/upload-artifact@v1
27
with:
28
name: Website
- path: ./_site/
29
+ path: site.tar.gz
0 commit comments