diff --git a/.github/workflows/flutter-auto-tag.yml b/.github/workflows/flutter-auto-tag.yml new file mode 100644 index 0000000..c8343f5 --- /dev/null +++ b/.github/workflows/flutter-auto-tag.yml @@ -0,0 +1,16 @@ +name: Flutter Auto Tag Workflow +on: + push: + branches: [main] + +jobs: + create_tag: + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: ⬇️ Checkout repository + uses: actions/checkout@v4 + - uses: eneskaraosman/action-autotag@3afa05f57ac051e8ffda3453790a71e68fce53ee # v4.0.4 + with: + GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" + include_build_number: false diff --git a/CHANGELOG.md b/CHANGELOG.md index 0adf08a..09b3037 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.6.5 + +* ci: add auto tag workflow +* chore: upgrade internal dependencies + ## 1.6.4 * chore: resolve several lint issues