Skip to content

Merge pull request #50 from outfoxx/fix/event_source_backoff #49

Merge pull request #50 from outfoxx/fix/event_source_backoff

Merge pull request #50 from outfoxx/fix/event_source_backoff #49

Workflow file for this run

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-12
steps:
- uses: actions/checkout@v3
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_14.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@v3
with:
name: docs-${{ github.ref_name }}
path: docs.tar.gz
deploy:
runs-on: ubuntu-latest
needs: [ build ]
steps:
- uses: actions/checkout@v3
- name: Download Docs Archive
uses: actions/download-artifact@v3
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