From 1cdf81cdacee9686dc69d3c32cd3e11665a7d748 Mon Sep 17 00:00:00 2001 From: hm21 Date: Tue, 31 Mar 2026 09:48:04 +0200 Subject: [PATCH] chore: add GitHub release workflow to automate releases --- .github/workflows/publish.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8105a6dfa..a86aa793a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,4 +11,17 @@ jobs: id-token: write # Required for authentication using OIDC uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1 # with: - # working-directory: path/to/package/within/repository \ No newline at end of file + # working-directory: path/to/package/within/repository + + github-release: + needs: publish + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + - name: Create GitHub Release + uses: softprops/action-gh-release@v2 + with: + tag_name: ${{ github.ref_name }} + generate_release_notes: true \ No newline at end of file