Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update gh workflow and docs dir #465

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 26 additions & 34 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,34 +8,25 @@ on: # yamllint disable-line rule:truthy
env:
DOCS_REPO: "authzed/docs"
DOCS_BRANCH: "main"
GENERATED_DOCS_DIR: "docs"
TARGET_DOCS_DIR: "pages/zed"
GENERATED_DOCS_FILE: "docs/zed.md"
TARGET_DOCS_FILE: "pages/zed/zed.md"
CHANGES_DETECTED: false

permissions:
contents: "write"
pull-requests: "write"

jobs:
generate-and-sync-docs:
sync-docs:
name: "Generate & Sync Documentation"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout source repository"
uses: "actions/checkout@v3"
with:
fetch-depth: 1

- name: "Set up Go"
uses: "actions/setup-go@v4"
with:
go-version: 1.20
- uses: "actions/checkout@v4"
- uses: "authzed/actions/setup-go@main"
- uses: "authzed/actions/setup-mage@main"

- name: "Generate documentation"
run: |
cd magefiles
if ! mage gen:docs; then
echo "Documentation generation failed"
exit 1
fi
- name: "Generate Documentation"
run: "mage gen:docs"

- name: "Clone docs repository"
run: |
Expand All @@ -44,42 +35,43 @@ jobs:
exit 1
}

- name: "Compare generated docs with target docs"
id: "compare"
- name: "Sync documentation changes"
id: "sync"
run: |
rsync -r --delete $GENERATED_DOCS_DIR/ docs-repo/$TARGET_DOCS_DIR
rsync -r --delete $GENERATED_DOCS_FILE/ docs-repo/$TARGET_DOCS_FILE
cd docs-repo
if git diff --exit-code; then
echo "No changes detected in docs."
echo "changes_detected=false" >> $GITHUB_ENV
if ! git diff --exit-code; then
echo "CHANGES_DETECTED=true" >> $GITHUB_ENV
else
echo "Changes detected in docs."
echo "changes_detected=true" >> $GITHUB_ENV
echo "CHANGES_DETECTED=false" >> $GITHUB_ENV
fi

- name: "Configure Git"
if: "env.changes_detected == true"
if: |
env.CHANGES_DETECTED == 'true'
run: |
cd docs-repo
git config user.name "GitHub Actions"
git config user.email "[email protected]"

- name: "Commit and push changes if any"
if: "env.changes_detected == true"
- name: "Commit and push changes"
if: |
env.CHANGES_DETECTED == 'true'
run: |
cd docs-repo
git add $TARGET_DOCS_DIR
git add $TARGET_DOCS_FILE
git commit -m "Update generated docs"
git push origin $DOCS_BRANCH

- name: "Create a pull request"
if: "env.changes_detected == true"
- name: "Create pull request"
if: |
env.CHANGES_DETECTED == 'true'
uses: "peter-evans/create-pull-request@v5"
with:
token: "${{ secrets.GITHUB_TOKEN }}"
commit-message: "Update generated docs"
branch: "update-generated-docs"
title: "Sync generated docs"
body: |
This PR updates the generated documentation files in `$TARGET_DOCS_DIR` with the latest version from the main repository.
Update zed documentation in directory `$TARGET_DOCS_FILE` with the latest version from the zed repository
base: "$DOCS_BRANCH"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
dist/
temp/
docs/

# Local-only files
go.work
Expand Down
5 changes: 2 additions & 3 deletions magefiles/magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,9 @@ func (g Gen) All() error {

// Generate markdown files for zed
func (Gen) Docs() error {
targetDir := "../docs"
targetDir := "docs"

err := os.MkdirAll("../docs", os.ModePerm)
if err != nil {
if err := os.MkdirAll(targetDir, os.ModePerm); err != nil {
return err
}

Expand Down
Loading