2 Commits

Author SHA1 Message Date
Kamil
43adf12755 Enable generation of release notes in GitHub Actions workflow 2024-12-12 12:21:39 +00:00
Kamil Kosek
e2bea2c151 Update main.yml
Remove automatic Build
2024-12-09 10:51:20 +01:00

View File

@@ -1,9 +1,12 @@
name: Build and Release on Tag
on:
push:
branches:
- main
workflow_dispatch:
inputs:
branch:
description: 'Branch to build the Docker image from'
required: true
default: 'main'
jobs:
build-and-publish:
@@ -73,5 +76,7 @@ jobs:
name: Release ${{ env.VERSION }}
body: |
${{ env.CHANGELOG_CONTENT }}
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}