generated from sapphiredev/sapphire-template
-
-
Notifications
You must be signed in to change notification settings - Fork 34
46 lines (42 loc) · 1.07 KB
/
documentation.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
name: Documentation
on:
push:
branches:
- main
tags:
- '**'
concurrency:
group: ${{ github.workspace }}|${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
docgen:
uses: sapphiredev/.github/.github/workflows/reusable-documentation-docgen.yml@main
with:
mono-repo: true
upload:
needs: docgen
uses: sapphiredev/.github/.github/workflows/reusable-documentation-upload.yml@main
strategy:
max-parallel: 1
fail-fast: false
matrix:
package:
- api
- editable-commands
- hmr
- i18next
- logger
- pattern-commands
- scheduled-tasks
- subcommands
- utilities-store
with:
project-name: plugins
mono-repo: true
name: ${{ needs.docgen.outputs.NAME }}
type: ${{ needs.docgen.outputs.TYPE }}
sha: ${{ needs.docgen.outputs.SHA }}
package: ${{ matrix.package }}
artifact-id: ${{ needs.docgen.outputs.artifact-id }}
secrets:
SKYRA_TOKEN: ${{ secrets.SKYRA_TOKEN }}