Added annotations to typealiases and typealiases property to JS templ… #86
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
# This workflow will build a Swift project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift | |
name: rake docs | |
on: | |
workflow_call: | |
workflow_dispatch: | |
inputs: | |
ref: | |
description: 'Ref to build (branch, tag or SHA)' | |
required: false | |
default: 'master' | |
push: | |
branches: [ "master" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
update_docs: | |
runs-on: macos-14 | |
steps: | |
- name: Set Xcode 15.3.0 | |
run: sudo xcode-select -s /Applications/Xcode_15.3.0.app/Contents/Developer | |
- name: Print Current Xcode | |
run: xcode-select -p | |
- uses: actions/checkout@v3 | |
- name: Update Docs | |
run: | | |
brew install coreutils | |
brew install sourcekitten | |
bundle install | |
rake docs | |
- uses: EndBug/[email protected] | |
with: | |
add: '.' | |
message: 'Update Docs' | |
committer_name: GitHub Actions | |
committer_email: [email protected] | |