mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2025-01-11 14:07:47 +00:00
19 lines
390 B
YAML
19 lines
390 B
YAML
|
name: Build/Deploy Documentation
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [$default-branch]
|
||
|
|
||
|
jobs:
|
||
|
build-deploy-docs:
|
||
|
runs-on: ubuntu-20.04
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Use Node.JS
|
||
|
uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: 14.15.0
|
||
|
- name: Build & Deploy Documentation
|
||
|
run: ./SpotifyAPI.Docs/docs.sh
|