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