From c6ecb3955595c0eb71c9ff24abe1af53d475f3a0 Mon Sep 17 00:00:00 2001 From: Martin Buchleitner Date: Wed, 20 Jul 2022 11:11:57 +0200 Subject: [PATCH] fix: adding push pack of changelog --- .github/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e8602c..bcd6c28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,6 @@ jobs: with: github-token: ${{ secrets.GITHUB_TOKEN }} changelog-file: CHANGELOG.md - changelog-generator-opt: "emojis=true" - name: Prepare Dockerhub id: prep @@ -74,4 +73,11 @@ jobs: context: . file: ./Dockerfile push: ${{ github.event_name != 'pull_request' && steps.semrel.outputs.version != '' }} - tags: ${{ steps.prep.outputs.tags }} \ No newline at end of file + tags: ${{ steps.prep.outputs.tags }} + + - name: Update changelog + uses: stefanzweifel/git-auto-commit-action@v4 + if: github.event_name != 'pull_request' && steps.semrel.outputs.version != '' + with: + commit_message: 'chore(ci): commit changes from go-semantic-release' + file_pattern: CHANGELOG.md \ No newline at end of file