Skip to content

Commit e35d05a

Browse files
committed
1 parent 44d3413 commit e35d05a

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/check_jekyll_build.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,26 @@ on:
44
branches: [ master ]
55

66
jobs:
7-
# Job to test that web pages build
87
jekyll_build:
98
name: Jekyll build of web pages
109
runs-on: ubuntu-latest
1110

1211
steps:
12+
# https://github.com/actions/checkout
1313
- name: Checkout
1414
uses: actions/checkout@v2
1515

16+
# https://github.com/marketplace/actions/build-jekyll
1617
- name: Build with Jekyll
1718
uses: jerryjvl/jekyll-build-action@v1
1819

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
1925
- name: Upload Website artifact
2026
uses: actions/upload-artifact@v1
2127
with:
2228
name: Website
23-
path: ./_site/
29+
path: site.tar.gz

0 commit comments

Comments
 (0)