update swiftLanguageVersions to swiftLanguageModes (#77) #49
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: Documentation | |
on: | |
release: | |
types: | |
- published | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: docs-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- name: Select Xcode 14.1 | |
run: sudo xcode-select -s /Applications/Xcode_14.1.app | |
- name: Checkout Package | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Checkout gh-pages Branch | |
uses: actions/checkout@v2 | |
with: | |
ref: gh-pages | |
path: docs-out | |
- name: Build documentation | |
run: > | |
rm -rf docs-out/.git; | |
rm -rf docs-out/main; | |
git tag -l --sort=-v:refname | grep -e "\d\+\.\d\+.0" | tail -n +6 | xargs -I {} rm -rf {}; | |
for tag in $(echo "main"; git tag -l --sort=-v:refname | grep -e "\d\+\.\d\+.0" | head -6); | |
do | |
if [ -d "docs-out/$tag/data/documentation/identifiedcollections" ] | |
then | |
echo "✅ Documentation for "$tag" already exists."; | |
else | |
echo "⏳ Generating documentation for IdentifiedCollections @ "$tag" release."; | |
rm -rf "docs-out/$tag"; | |
git checkout .; | |
git checkout "$tag"; | |
swift package \ | |
--allow-writing-to-directory docs-out/"$tag" \ | |
generate-documentation \ | |
--target IdentifiedCollections \ | |
--output-path docs-out/"$tag" \ | |
--transform-for-static-hosting \ | |
--hosting-base-path /swift-identified-collections/"$tag" \ | |
&& echo "✅ Documentation generated for IdentifiedCollections @ "$tag" release." \ | |
|| echo "⚠️ Documentation skipped for IdentifiedCollections @ "$tag"."; | |
fi; | |
done | |
- name: Fix permissions | |
run: 'sudo chown -R $USER docs-out' | |
- name: Publish documentation to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: docs-out | |
single-commit: true |