Skip to content

Commit 9190068

Browse files
author
Aaron Roller
committed
adding rosdocs AM-167 master
1 parent 94b37c2 commit 9190068

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/docs.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: rosdoc
2+
on:
3+
push:
4+
branches:
5+
- master
6+
jobs:
7+
build:
8+
runs-on: ubuntu-18.04
9+
steps:
10+
- uses: actions/checkout@v1
11+
- name: Generate ROSdoc
12+
id: rosdoc
13+
uses: AutoModality/action-rosdoc@v1
14+
- name: Attach Artifact
15+
uses: actions/upload-artifact@v1
16+
with:
17+
name: rosdoc
18+
path: ${{ steps.rosdoc.outputs.docs-path }}
19+
- name: Publish to Azure Storage
20+
uses: bacongobbler/azure-blob-storage-upload@v1.0.0
21+
with:
22+
source_dir: ${{ steps.rosdoc.outputs.docs-path }}
23+
container_name: docs
24+
# http://tiny.cc/y1bznz
25+
connection_string: ${{ secrets.AMROSDOC_AZURE_STORAGE_CONNECTION_STRING }}
26+
extra_args: --destination-path ${{github.repository}}
27+
sync: true
28+

0 commit comments

Comments
 (0)