File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 52
52
- name : Publish package
53
53
working-directory : ' packages/${{ env.package }}'
54
54
run : dart pub publish --force
55
+ docs-publish :
56
+ needs : release
57
+ runs-on : ubuntu-latest
58
+ timeout-minutes : 10
59
+ steps :
60
+ - name : Publish docs
61
+ uses : parse-community/Parse-SDK-Flutter/.github/workflows/release-manual-docs@master
62
+ with :
63
+ tag : ${{ github.ref_name }}
Original file line number Diff line number Diff line change 5
5
tag :
6
6
default : ' '
7
7
description : ' Version tag (dart-#.#.# or flutter-#.#.#):'
8
+ workflow_call :
9
+ inputs :
10
+ tag :
11
+ required : true
12
+ type : string
8
13
env :
9
14
package : ${{ startsWith(github.event.inputs.tag, 'dart') && 'dart' || 'flutter' }}
10
15
jobs :
19
24
- name : Setup dart
20
25
uses : dart-lang/setup-dart@v1
21
26
- name : Setup flutter
27
+ if : env.package == 'flutter'
22
28
uses : subosito/flutter-action@v2
23
29
with :
24
30
channel : ' stable'
You can’t perform that action at this time.
0 commit comments