CI upgrades
This commit is contained in:
parent
2f39b3a1c5
commit
b54e6b9806
20
.github/workflows/publish.yml
vendored
20
.github/workflows/publish.yml
vendored
@ -1,15 +1,10 @@
|
||||
name: Bundle Website
|
||||
on: push
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
|
||||
name: Build and publish site
|
||||
jobs:
|
||||
build-bundle-deploy:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
@ -23,7 +18,7 @@ jobs:
|
||||
|
||||
- name: Compile assets
|
||||
run: make
|
||||
|
||||
|
||||
- name: Build
|
||||
uses: TonySpegel/zola-build-action@v1
|
||||
env:
|
||||
@ -32,6 +27,11 @@ jobs:
|
||||
- name: Disable Jekyll
|
||||
run: sudo touch ./public/.nojekyll
|
||||
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
if: github.ref == 'refs/heads/master'
|
||||
steps:
|
||||
- name: Deploy to GitHub Pages
|
||||
if: success()
|
||||
uses: crazy-max/ghaction-github-pages@v2
|
||||
@ -40,4 +40,4 @@ jobs:
|
||||
build_dir: public
|
||||
fqdn: ewpratten.com
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user