We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8715507 commit b49a715Copy full SHA for b49a715
1 file changed
.github/workflows/gh-pages.yml
@@ -1,4 +1,4 @@
1
-name: github pages
+name: Deploy
2
3
on:
4
push:
@@ -7,18 +7,14 @@ on:
7
8
jobs:
9
deploy:
10
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v6
13
with:
14
submodules: true # Fetch Hugo themes (true OR recursive)
15
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
16
17
- - name: Setup Zola
18
- run: wget -q -O - "https://github.com/getzola/zola/releases/download/v0.11.0/zola-v0.11.0-x86_64-unknown-linux-gnu.tar.gz" | tar xzf -
19
-
20
- - name: Build
21
- run: ./zola build
+ - uses: ./.github/actions/zola-build
22
23
- name: Deploy
24
uses: peaceiris/actions-gh-pages@v3
0 commit comments