Skip to content

Merge pull request #69 from outfoxx/feature/pretty-yaml #11

Merge pull request #69 from outfoxx/feature/pretty-yaml

Merge pull request #69 from outfoxx/feature/pretty-yaml #11

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