Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterJ93 committed May 16, 2024
2 parents 4e5bd3f + 260483a commit 91d6f1b
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/docc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Update Documentation on Release

on:
release:
types: [published]
workflow_dispatch:

jobs:
update-docs:
runs-on: macos-latest

permissions:
contents: write

steps:
- uses: actions/checkout@v3
with:
ref: main
fetch-depth: 0

# - name: Archive DocC
# run: |
# xcodebuild docbuild -scheme ATProtoKit -destination 'name=My Mac' -derivedDataPath doccarchive
# DOCC_ARCHIVE="./$(find doccarchive -type d -name 'ATProtoKit.doccarchive')"

# - name: GH Release
# uses: softprops/[email protected]
# with:

- name: Generate DocC for Web
run: |
make docc
mv docs docc-website
- name: Move DocC website to docc branch
run: |
git fetch --all
git checkout docc
git rm -r docs/*
mkdir -p docs
mv docc-website/* docs
rm -r docc-website
cp CNAME docs/CNAME
git add docs
DATE_MSG=$(date "+This website is current as of %b %d, %Y at %H:%M %Z")
git commit -m "Update DocC website" -m "$DATE_MSG"
git push origin docc

0 comments on commit 91d6f1b

Please sign in to comment.