Collapsible: focusRectSkin in default theme #859
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: API Reference | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: krdlab/setup-haxe@v1 | |
with: | |
haxe-version: 4.0.5 | |
- name: Set up Haxelib dependencies | |
run: | | |
haxelib install lime 7.8.0 --quiet | |
haxelib install openfl 8.9.7 --quiet | |
haxelib install actuate --quiet | |
haxelib install dox --quiet | |
haxelib dev feathersui ${{ github.workspace }} | |
- name: Build API reference | |
working-directory: docs | |
run: haxe docs.hxml | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: feathersui-openfl-docs | |
path: bin/api/ | |
if-no-files-found: error | |
- name: Deploy to unstable | |
if: ${{ github.repository == 'feathersui/feathersui-openfl' && github.event_name != 'pull_request' }} | |
uses: garygrossgarten/github-action-scp@release | |
with: | |
local: bin/api | |
remote: api.feathersui.com/unstable | |
host: ${{ secrets.SSH_HOST }} | |
username: ${{ secrets.SSH_USER }} | |
password: ${{ secrets.SSH_PASS }} |