Update internal flake.lock (#687) #313
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: "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@v4 | |
- uses: cachix/install-nix-action@V27 | |
- uses: cachix/cachix-action@v15 | |
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 push | |
working-directory: output | |
run: | | |
git init | |
git config user.name "GitHub Actions" | |
git config user.email "[email protected]" | |
git branch -M gh-pages | |
git add . | |
git commit -m "Deploying site" | |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null | |
echo "${{ secrets.DEPLOY_KEY }}" | tr -d '\r' | ssh-add - | |
git push --force "[email protected]:${GITHUB_REPOSITORY}.git" gh-pages |