We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d095f0a commit b039127Copy full SHA for b039127
.github/workflows/release.yml
@@ -0,0 +1,25 @@
1
+name: Publish plugin
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
7
+jobs:
8
+ publish:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout
12
+ uses: actions/checkout@v1
13
+ - name: Publish "cryptography"
14
+ uses: k-paxian/dart-package-publisher@master
15
+ with:
16
+ relativePath: cryptography
17
+ accessToken: ${{ secrets.OAUTH_ACCESS_TOKEN }}
18
+ refreshToken: ${{ secrets.OAUTH_REFRESH_TOKEN }}
19
+ - name: Publish "cryptography_flutter"
20
21
22
+ flutter: true
23
+ relativePath: cryptography_flutter
24
25
0 commit comments