chore(ci): split build into build and deploy jobs
This commit is contained in:
parent
2078d95600
commit
f2cc09bbdd
24
.github/workflows/ci.yml
vendored
24
.github/workflows/ci.yml
vendored
@ -10,7 +10,8 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-18.04
|
name: Build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
@ -24,9 +25,24 @@ jobs:
|
|||||||
- name: Build local ./exampleSite
|
- name: Build local ./exampleSite
|
||||||
run: hugo --minify --gc --destination ../public --source ./exampleSite --themesDir ../.. --baseURL https://janraasch.github.io/hugo-bearblog/
|
run: hugo --minify --gc --destination ../public --source ./exampleSite --themesDir ../.. --baseURL https://janraasch.github.io/hugo-bearblog/
|
||||||
|
|
||||||
- name: Deploy to GitHub Pages
|
- name: Upload Artifact
|
||||||
if: github.event_name == 'push'
|
uses: actions/upload-artifact@v3
|
||||||
uses: peaceiris/actions-gh-pages@v3.9.2
|
with:
|
||||||
|
name: build
|
||||||
|
path: ./public
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
needs: build
|
||||||
|
name: Deploy to GitHub Pages
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.ref == 'refs/heads/source' }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/download-artifact@v3
|
||||||
|
with:
|
||||||
|
name: build
|
||||||
|
path: ./public
|
||||||
|
- uses: peaceiris/actions-gh-pages@v3.9.2
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
publish_dir: ./public
|
publish_dir: ./public
|
||||||
|
Loading…
Reference in New Issue
Block a user