We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94b37c2 commit 9190068Copy full SHA for 9190068
1 file changed
.github/workflows/docs.yml
@@ -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
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