Merge pull request #53 from outfoxx/feature/media-type-up #54
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: Publish Docs | |
on: | |
push: | |
branches: [ main ] | |
permissions: | |
contents: write | |
concurrency: | |
group: publish-docs-${{github.ref_name}} | |
cancel-in-progress: false | |
jobs: | |
build: | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select Xcode | |
run: sudo xcode-select -s /Applications/Xcode_16.1.app/Contents/Developer | |
- run: mkdir -p docs | |
- name: Build Docs | |
run: >- | |
swift package | |
--allow-writing-to-directory docs/${{ github.ref_name }} | |
generate-documentation | |
--target Sunday | |
--output-path docs/${{ github.ref_name }} | |
--transform-for-static-hosting | |
--hosting-base-path sunday-swift/${{ github.ref_name }} | |
- name: Archive Docs | |
run: tar -czf docs.tar.gz docs | |
- name: Upload Docs Archive | |
uses: actions/upload-artifact@v4 | |
with: | |
name: docs-${{ github.ref_name }} | |
path: docs.tar.gz | |
deploy: | |
runs-on: ubuntu-latest | |
needs: [ build ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download Docs Archive | |
uses: actions/download-artifact@v4 | |
with: | |
name: docs-${{ github.ref_name }} | |
path: '.' | |
- name: Unarchive Docs | |
run: tar -xvf docs.tar.gz | |
- name: Deploy Docs | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: docs | |
clean: false | |