Deploy Site #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Site | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '**.ftd' | |
- '**.md' | |
workflow_dispatch: | |
workflow_call: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: FranzDiebold/github-env-vars-action@v2 | |
- name: Install fastn | |
id: install_fastn | |
continue-on-error: false | |
run: source <(curl -fsSL https://fastn.com/install.sh) | |
- name: Build the pages with fastn | |
id: build | |
continue-on-error: false | |
run: | | |
echo "Using '$CI_REPOSITORY_NAME_SLUG/' as the base while building" | |
fastn build --base=/$CI_REPOSITORY_NAME/ | |
- name: copy CNAME | |
run: '(test -f CNAME && cp CNAME .build) || echo "CNAME does not exist, skipping step"' | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./.build |