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.
2 parents 3df19fe + aa9f807 commit 9a837fbCopy full SHA for 9a837fb
.github/workflows/release.yaml
@@ -7,7 +7,7 @@ on:
7
8
jobs:
9
build:
10
- name: Publishing for ${{ matrix.os }}
+ name: Build for ${{ matrix.os }}
11
runs-on: ${{ matrix.os }}
12
strategy:
13
fail-fast: false
@@ -59,4 +59,22 @@ jobs:
59
bin/${{ matrix.target }}/fluttergen-${{ matrix.artifact_prefix }}.tar.gz
60
bin/${{ matrix.target }}/fluttergen-${{ matrix.artifact_prefix }}.sha256
61
env:
62
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
63
+
64
65
+ publish:
66
+ name: Publishing
67
+ runs-on: macos-latest
68
69
+ steps:
70
+ - name: Checking out sources
71
+ uses: actions/checkout@v2
72
73
+ - name: Publish to pub.dev
74
+ uses: sakebook/[email protected]
75
+ with:
76
+ credential: ${{ secrets.CREDENTIAL_JSON }}
77
+ flutter_package: false
78
+ skip_test: true
79
+ dry_run: true
80
0 commit comments