From 32f06146fbc096a6b761f724f0efde35305b182e Mon Sep 17 00:00:00 2001 From: Kroese Date: Tue, 31 Oct 2023 17:00:02 +0100 Subject: [PATCH] build: Changelog --- .github/workflows/build.yml | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e3588c9..1933c03 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -86,25 +86,6 @@ jobs: name: Clear Docker credentials run: | rm -f ${HOME}/.docker/config.json - - - name: Get previous tag - id: previousTag - run: | - name=$(git --no-pager tag --sort=creatordate --merged ${{ github.ref_name }} | tail -1) - echo "previousTag: $name" - echo "previousTag=$name" >> $GITHUB_ENV - - - name: Generate changelog - id: changelog - uses: requarks/changelog-action@v1 - with: - token: ${{ github.token }} - fromTag: ${{ github.ref_name }} - toTag: ${{ env.previousTag }} - writeToFile: false - reverseOrder: true - includeInvalidCommits: true - excludeTypes: "docs,build,chore" - name: Create a release uses: action-pack/github-release@v2 @@ -113,10 +94,6 @@ jobs: with: tag: "v${{ steps.prepare.outputs.version }}" title: "v${{ steps.prepare.outputs.version }}" - body: | - ${{ steps.changelog.outputs.changes }} - - **Full Changelog**: https://github.com/${{ github.repository }}/compare//${{ env.previousTag }}...v${{ steps.prepare.outputs.version }} - name: Increment version variable uses: action-pack/bump@v2