2023-02-20 20:03:59 +07:00
|
|
|
name: eleventy
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- name: get last sha
|
|
|
|
run: echo "LAST_COMMIT=`git rev-parse --short HEAD`" >> $GITHUB_ENV
|
|
|
|
- name: Build
|
|
|
|
uses: TartanLlama/actions-eleventy@master
|
2023-02-20 20:06:19 +07:00
|
|
|
with:
|
|
|
|
install_dependencies: true
|
2023-02-20 20:14:04 +07:00
|
|
|
- name: Deploy
|
2023-07-09 03:24:05 +07:00
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ./dist
|
|
|
|
cname: rizaldy.today
|