diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index f67602a7..af69bfd4 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,7 +1,7 @@ diff --git a/.github/workflows/stable_release.yaml b/.github/workflows/stable_release.yaml new file mode 100644 index 00000000..ffa05071 --- /dev/null +++ b/.github/workflows/stable_release.yaml @@ -0,0 +1,21 @@ +name: Create Stable Release +on: + push: + branches: + - stable + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Get Package Version + id: get_flutter_version + uses: its404/get-flutter-version@v1.0.0 + - name: Create a Stable Release + uses: rymndhng/release-on-push-action@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + use_github_release_notes: true + release_name: "Version ${{ steps.get_flutter_version.outputs.version_number }}"