fix links on docs pages

This commit is contained in:
eyedeekay
2025-05-06 17:37:26 -04:00
parent 4ccce09bec
commit fc6af5eeb1
2 changed files with 3 additions and 10 deletions

View File

@ -1,13 +1,5 @@
<<<<<<< HEAD
fmt: cp fmt: cp
find . -name '*.go' -exec gofumpt -w -s -extra {} \; find . -name '*.go' -exec gofumpt -w -s -extra {} \;
cp: cp:
cp -v ./.github/workflows/page.yml pkg/templates/page.yml cp -v ./.github/workflows/page.yml pkg/templates/page.yml
||||||| 883cc95
fmt:
find . -name '*.go' -exec gofumpt -w -s -extra {} \;
=======
fmt:
find . -name '*.go' -exec gofumpt -w -s -extra {} \;
>>>>>>> a0804fdff6ce1cf2312908d85889ae632c2915e6

View File

@ -31,7 +31,8 @@ jobs:
- name: Build Site Generator - name: Build Site Generator
run: | run: |
go install github.com/go-i2p/go-gh-page/cmd/github-site-gen@latest go install github.com/go-i2p/go-gh-page/cmd/github-site-gen@latest
cp -v "$GOPATH/bin/github-site-gen" ./github-site-gen export GOBIN=$(go env GOPATH)/bin
cp -v "$GOBIN/github-site-gen" ./github-site-gen
# Ensure the binary is executable # Ensure the binary is executable
chmod +x github-site-gen chmod +x github-site-gen
@ -56,4 +57,4 @@ jobs:
folder: site # The folder the action should deploy folder: site # The folder the action should deploy
branch: gh-pages # The branch the action should deploy to branch: gh-pages # The branch the action should deploy to
clean: true # Automatically remove deleted files from the deploy branch clean: true # Automatically remove deleted files from the deploy branch
commit-message: "Deploy site generated on ${{ github.sha }}" commit-message: "Deploy site generated on ${{ github.sha }}"