diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..9d00b7d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,27 @@ +name: Create Release + +on: + push: + tags: + - 'v*' + +permissions: + contents: write + +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Create GitHub Release + uses: softprops/action-gh-release@v2 + with: + generate_release_notes: true + body: | + See the [full release notes on Gitea](https://somegit.dev/vikingowl/vessel/releases) for detailed information. + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}