Skip to content

actions: use github.workspace instead of platform specific environmen… #21

actions: use github.workspace instead of platform specific environmen…

actions: use github.workspace instead of platform specific environmen… #21

Workflow file for this run

name: API Reference
on:
push:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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 dox --quiet
haxelib dev feathersui-formatters ${{ github.workspace }}
- name: Build API reference
working-directory: docs
run: haxe docs.hxml
- uses: actions/upload-artifact@v3
with:
name: feathersui-formatters
path: bin/api/
if-no-files-found: error
- name: Deploy to unstable
if: ${{ github.event_name != 'pull_request' }}
uses: garygrossgarten/github-action-scp@release
with:
local: bin/api
remote: api.feathersui.com/formatters/unstable
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USER }}
password: ${{ secrets.SSH_PASS }}