-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (55 loc) · 1.85 KB
/
publish_api_docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
###################################################################
# Auto-created by the cicd-actions tool
on: workflow_dispatch
name: Publish API Documentation to Readme.com
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 14.17.2
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Version
id: package-versions
run: ./tool/cicd/actions/scripts/export_versions.sh
- name: Discovered versions
run: >
echo "Versions: function_api/${{env.VERSION_FUNCTION_API}}
fuse-cli/${{env.VERSION_FUSEBIT_CLI}}
fuse-ops/${{env.VERSION_FUSEBIT_OPS_CLI}}"
- name: Publish the OpenAPI docs for v1 to Readme.Com
uses: readmeio/[email protected]
with:
rdme: >-
openapi ./api/function-api/api_v1.yaml --key=${{
secrets.README_COM_API_KEY }} --id=${{ secrets.README_COM_V1_ID }}
- name: Publish the OpenAPI docs for v2 to Readme.Com
uses: readmeio/[email protected]
with:
rdme: >-
openapi ./api/function-api/api_v2.yaml --key=${{
secrets.README_COM_API_KEY }} --id=${{ secrets.README_COM_V2_ID }}
- name: Notify slack success
if: success()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}
uses: voxmedia/github-action-slack-notify-build@v1
with:
channel: pr-review
status: SUCCESS
color: good
- name: Notify slack fail
if: failure()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}
uses: voxmedia/github-action-slack-notify-build@v1
with:
channel: pr-review
status: FAILED
color: danger