Fix ifChanged (#415) #235
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: Docs | |
on: | |
push: | |
branches: | |
- main # Set a branch name to trigger deployment | |
workflow_dispatch: | |
env: | |
SCHEME: "VergeStore" | |
jobs: | |
deploy: | |
runs-on: macos-12 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- uses: maxim-lobanov/setup-xcode@v1.1 | |
with: | |
xcode-version: "14.2" | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true # Fetch Hugo themes (true OR recursive) | |
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
- name: Make dir | |
run: | | |
mkdir -p public/Verge | |
mkdir -p public/VergeORM | |
- name: Build Verge | |
run: swift package --allow-writing-to-directory public/Verge | |
generate-documentation | |
--target Verge | |
--disable-indexing | |
--transform-for-static-hosting | |
--hosting-base-path swift-Verge/Verge | |
--output-path public/Verge | |
- name: Build VergeORM | |
run: swift package --allow-writing-to-directory public/VergeORM | |
generate-documentation | |
--target VergeORM | |
--disable-indexing | |
--transform-for-static-hosting | |
--hosting-base-path swift-Verge/VergeORM | |
--output-path public/VergeORM | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./public |