Skip to content

Commit 822bbd2

Browse files
committed
added github actions
1 parent 9d84d69 commit 822bbd2

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

.github/workflows/release.yml

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- prereleased
88

99
jobs:
10-
publish:
10+
publish-cli:
1111

1212
runs-on: ubuntu-latest
1313

@@ -18,6 +18,39 @@ jobs:
1818
uses: sakebook/[email protected]
1919
with:
2020
credential: ${{ secrets.PUB_CREDENTIAL_JSON }}
21+
package_directory: ./openapi-generator-cli
22+
flutter_package: true
23+
skip_test: true
24+
dry_run: true
25+
26+
publish-annotation:
27+
28+
runs-on: ubuntu-latest
29+
30+
steps:
31+
- name: Checkout
32+
uses: actions/checkout@v1
33+
- name: Publish
34+
uses: sakebook/[email protected]
35+
with:
36+
credential: ${{ secrets.PUB_CREDENTIAL_JSON }}
37+
package_directory: ./openapi-generator-annotations
38+
flutter_package: true
39+
skip_test: true
40+
dry_run: true
41+
42+
publish-generator:
43+
44+
runs-on: ubuntu-latest
45+
46+
steps:
47+
- name: Checkout
48+
uses: actions/checkout@v1
49+
- name: Publish
50+
uses: sakebook/[email protected]
51+
with:
52+
credential: ${{ secrets.PUB_CREDENTIAL_JSON }}
53+
package_directory: ./openapi-generator
2154
flutter_package: true
2255
skip_test: true
2356
dry_run: true

0 commit comments

Comments
 (0)