diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6f75d58af..d43bd02fa 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -24,10 +24,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: subosito/flutter-action@v2 + - name: 'Publish Package' + uses: k-paxian/dart-package-publisher@master with: - channel: "stable" - - name: Install dependencies - run: flutter pub get - - name: Publish - run: dart pub publish --force \ No newline at end of file + accessToken: ${{ secrets.OAUTH_ACCESS_TOKEN }} + refreshToken: ${{ secrets.OAUTH_REFRESH_TOKEN }} + + diff --git a/CHANGELOG.md b/CHANGELOG.md index 22007bd09..7a3c87550 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 1.0.0-beta.15 + +* Docs: Update documentation for better user guidance by @leoafarias and @tilucasoli +* Feature: Move the animationData to inside the Spec classes by @tilucasoli and @leoafarias +* Feature: Implement Style.asAttribute by @tilucasoli +* Enhancement: Rename disabled parameter to enabled by @tilucasoli + ## 1.0.0-beta.14 * Remove deprecated code by @tilucasoli