We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9883e70 commit e8d057aCopy full SHA for e8d057a
1 file changed
.github/workflows/dart.yml
@@ -69,12 +69,10 @@ jobs:
69
env:
70
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
71
72
- - name: Publish to pub
73
- run: dart pub publish --dry-run
74
-
75
- - uses: sakebook/actions-flutter-pub-publisher@v1.3.1
76
- with:
77
- package_directory: ${{ matrix.package }}
78
- credential: ${{ secrets.PUB_CREDENTIALS }}
79
- flutter_package: false
80
- skip_test: true
+ - name: Setup Pub Credentials
+ run: |
+ mkdir -p $HOME/.config/dart
+ echo '${{ secrets.PUB_CREDENTIALS }}' > $HOME/.config/dart/pub-credentials.json
+
+ - name: Publish to pub.dev
+ run: dart pub publish --force
0 commit comments