From 219d90691fbe65d0e118f8b29d29413ad981663a Mon Sep 17 00:00:00 2001 From: Max Stephan Date: Mon, 1 Nov 2021 10:09:09 +0100 Subject: [PATCH] [CI/CD] fix changelog creation (#96) --- .github/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b4b2ddf..21c5527 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,6 +10,8 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout repository + uses: actions/checkout@v2 - name: Get the Tag version id: get_version run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//} @@ -24,9 +26,9 @@ jobs: pullRequests: false enhancementLabels: "" issuesLabel: "**Changes:**" - addSections: '{"internal": { "prefix": "**Internal:**", "labels": ["CI/CD"] }}' + addSections: '{"internal":{"prefix":"**Internal:**","labels":["CI/CD","Docker"]}}' - name: Release uses: softprops/action-gh-release@v0.1.13 with: - body: steps.changelog.outputs.changelog + body: ${{ steps.changelog.outputs.changelog }} prerelease: ${{ startsWith(github.ref, 'refs/tags/v0') || contains(github.ref, fromJson('["beta", "alpha"]')) }}