Skip to content

Commit

Permalink
Deploy to gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 18, 2024
0 parents commit f7b6b9b
Show file tree
Hide file tree
Showing 40 changed files with 4,992 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Deploy to GitHub Pages

on:
push:
branches:
- main # Change this to your default branch if it's not 'main'

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22' # Use the appropriate version of Go

- name: Build Go project
run: |
go build -o docute .
- name: Run Go executable
run: |
cd docs
../docute generate --base="/docute/"
- name: Setup Node.js (for Git commands)
uses: actions/setup-node@v3
with:
node-version: '14'

- name: Deploy to gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Configure git
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
if git show-ref --quiet refs/heads/gh-pages; then
git checkout gh-pages
else
git checkout --orphan gh-pages
fi
# Copy new content to the gh-pages branch
cp -r docs/.out/* .
git add .
git commit -m "Deploy to gh-pages"
git push origin gh-pages --force
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
out
jackal
.idea
docs/.out
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
install:
@ go install .

generate:
cd docs && docute generate

host: install generate
cd docs && docute host



format-tools:
go install mvdan.cc/gofumpt@v0.6.0
gofumpt -l -w .

lint: format-tools
golangci-lint run

.PHONY: host install generate format-tools lint
Loading

0 comments on commit f7b6b9b

Please sign in to comment.