TuistUI v0.1.5 #40
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docc | |
on: | |
release: | |
types: | |
- published | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: docc-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- name: Set Xcode version | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.0' | |
- 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: View Swift Version | |
run: swift --version | |
- 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/[email protected] | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
branch: gh-pages | |
folder: docs-out | |
single-commit: true |