Skip to content

Commit

Permalink
Update docc.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jihoonahn authored Oct 31, 2024
1 parent 78e30eb commit 3e02f75
Showing 1 changed file with 51 additions and 6 deletions.
57 changes: 51 additions & 6 deletions .github/workflows/docc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,54 @@ concurrency:
cancel-in-progress: true

jobs:
docc:
name: Docc
uses: jihoonme/github-workflows/.github/workflows/swift_docc.yml@main
with:
project_target: "TuistUI"
hosting_path: "tuistui"
build:
runs-on: macos-latest
steps:
- name: Checkout Package
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Checkout gh-pages Branch
uses: actions/checkout@v3
with:
ref: gh-pages
path: docs-out
- name: Build documentation
run: >
rm -rf docs-out/.git;
rm -rf docs-out/main;
rm -rf docs-out/latest;
for tag in $(echo "main"; echo "latest"; git tag | tail -n +94);
do
echo "⏳ Generating documentation for "$tag" release.";
if [ -d "docs-out/$tag" ]
then
echo "✅ Documentation for "$tag" already exists.";
else
if [ "$tag" == "latest" ]; then
git checkout -f "$(git tag | tail -n 1)";
else
git checkout -f "$tag";
fi
swift package \
--allow-writing-to-directory docs-out/"$tag" \
generate-documentation \
--target TuistUI \
--output-path docs-out/"$tag" \
--transform-for-static-hosting \
--hosting-base-path /tuistui/"$tag" \
&& echo "✅ Documentation generated for "$tag" release." \
|| echo "⚠️ Documentation skipped for "$tag".";
fi;
done
- name: Fix permissions
run: 'sudo chown -R $USER docs-out'
- name: Publish documentation to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs-out
single-commit: true

0 comments on commit 3e02f75

Please sign in to comment.