Merge pull request #72 from outfoxx/fix/catalyst #12
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: Publish Release | |
on: | |
push: | |
tags: [ "[0-9]+.[0-9]+.[0-9]+**" ] | |
permissions: | |
contents: write | |
concurrency: | |
group: publish-release-${{github.ref_name}} | |
cancel-in-progress: false | |
jobs: | |
build: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select Xcode | |
run: sudo xcode-select -s /Applications/Xcode_15.2.app/Contents/Developer | |
- run: | | |
mkdir -p docs | |
mkdir -p allsgs | |
mkdir -p sgs | |
- name: Build Symbol Graph | |
run: | | |
swift build -Xswiftc -emit-symbol-graph -Xswiftc -emit-symbol-graph-dir -Xswiftc allsgs | |
cp allsgs/Potent*.json sgs | |
- name: Build Docs | |
run: >- | |
swift package | |
--allow-writing-to-directory docs/${{ github.ref_name }} | |
generate-documentation | |
--enable-inherited-docs | |
--additional-symbol-graph-dir sgs | |
--target PotentCodables | |
--output-path docs/${{ github.ref_name }} | |
--transform-for-static-hosting | |
--hosting-base-path PotentCodables/${{ 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 | |
publish: | |
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 | |
- name: Check Version Format in Tag | |
id: version | |
uses: nowsprinting/check-version-format-action@v4 | |
- name: Create GitHub Release | |
uses: softprops/action-gh-release@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
name: 🚀 v${{ github.ref_name }} | |
tag_name: ${{ github.ref_name }} | |
generate_release_notes: true | |
prerelease: ${{ steps.version.outputs.is_stable != 'true' }} | |
make_latest: ${{ steps.version.outputs.is_stable == 'true' }} | |
draft: false |