diff --git a/.github/workflows/gh_pages.yml b/.github/workflows/gh_pages.yml index e0548ec84..f44d411d8 100644 --- a/.github/workflows/gh_pages.yml +++ b/.github/workflows/gh_pages.yml @@ -59,13 +59,12 @@ jobs: path: book token: ${{secrets.PUSH_HACSPEC_GITHUB_TOKEN}} - - uses: actions/checkout@v3 - uses: DeterminateSystems/nix-installer-action@main - name: Configure git run: | - git config --local user.name "github-actions[bot]" - git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" + git config --global user.name "github-actions[bot]" + git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" - name: Patch and push `README.md` in `hacspec.github.io` run: | @@ -90,9 +89,12 @@ jobs: - name: Regenerate and push the book run: | - nix build hax#hax-book -o result-hax-book - cp --no-preserve=mode -r result-hax-book hax-book - mv book/.git hax-book/.git + nix build ./hax#hax-book -o result-hax-book + rsync -r --no-perms --chown=$(whoami):$(whoami) result-hax-book hax-book + cp --no-preserve=mode,ownership -r result-hax-book hax-book + chmod ugo+wr -R hax-book + mv book/.git hax-book-git + mv hax-book-git hax-book/.git cd hax-book