diff --git a/.github/workflows/push_main.yaml b/.github/workflows/push_main.yaml index 16cc11d..38ed8a8 100644 --- a/.github/workflows/push_main.yaml +++ b/.github/workflows/push_main.yaml @@ -85,6 +85,6 @@ jobs: run: dart pub get - name: Publish to pub.dev run: | - mkdir -p ~/.config/dart/pub-credentials.json + mkdir -p ~/.config/dart echo "${{ secrets.PUB_CREDENTIALS }}" > ~/.config/dart/pub-credentials.json echo y | dart pub publish diff --git a/CHANGELOG.md b/CHANGELOG.md index e8d139a..075239a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG -## 0.4.3 +## 0.4.4 - (Really) fix CI ## 0.4.1 diff --git a/pubspec.yaml b/pubspec.yaml index 1938465..9871542 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: big_decimal -version: 0.4.3 +version: 0.4.4 description: > A bugless implementation of BigDecimal in Dart based on Java's BigDecimal