Skip to content

Expand the about page a tad #20

Expand the about page a tad

Expand the about page a tad #20

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: taiki-e/install-action@v2
with:
tool: [email protected]
- uses: actions/checkout@v3
with:
submodules: recursive
- run: zola build -o "_site" --base-url "https://wtf.allwallet.dev/"
- name: Upload Pages Artifact
id: artifact
uses: actions/upload-pages-artifact@v1
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2