Skip to content

ci: allow manual triggers of flakehub publish #95

ci: allow manual triggers of flakehub publish

ci: allow manual triggers of flakehub publish #95

Workflow file for this run

name: "pages"
on:
push:
branches:
- "master"
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
- uses: cachix/cachix-action@v12
with:
name: crane
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: mdbook build
run: |
mkdir output
nix build --accept-flake-config .#book --out-link result --print-build-logs
rsync -r -L ./result/ ./output
- name: git commit
working-directory: output
run: |
git init
git config user.name "GitHub Actions"
git config user.email "github-actions-bot@users.noreply.github.com"
git branch -M gh-pages
git add .
git commit -m "Deploying site"
- name: git push
working-directory: output
run: |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
ssh-add - <<< "${{ secrets.DEPLOY_KEY }}"
git push --force "git@github.com:${GITHUB_REPOSITORY}.git" gh-pages