v1.1.2 (#16) #2
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: DocC | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: DocC | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build Documentation | |
run: xcodebuild docbuild -scheme TestOpti2D -destination 'generic/platform=macOS' -derivedDataPath ./Documentation DOCC_HOSTING_BASE_PATH='testopti2d' | |
- name: Get Files | |
run: ls | |
- name: FTP Deploy | |
uses: SamKirkland/[email protected] | |
with: | |
server: ${{ secrets.FTP_SERVER }} | |
username: ${{ secrets.FTP_USER }} | |
password: ${{ secrets.FTP_PASSWORD }} | |
local-dir: "Documentation/Build/Products/Debug/TestOpti2D.doccarchive/" | |
dangerous-clean-slate: true |