diff --git a/.github/actions/changelog/Dockerfile b/.github/actions/changelog/Dockerfile deleted file mode 100644 index b6c7edd5b7..0000000000 --- a/.github/actions/changelog/Dockerfile +++ /dev/null @@ -1,7 +0,0 @@ -FROM alpine/git:latest - -# Copies your code file from your action repository to the filesystem path `/` of the container -COPY entrypoint.sh /home/entrypoint.sh -RUN chmod +x /home/entrypoint.sh -# Code file to execute when the docker container starts up (`entrypoint.sh`) -ENTRYPOINT ["/home/entrypoint.sh"] diff --git a/.github/actions/changelog/action.yml b/.github/actions/changelog/action.yml deleted file mode 100644 index fa6a387f96..0000000000 --- a/.github/actions/changelog/action.yml +++ /dev/null @@ -1,8 +0,0 @@ -name: 'Changelog' -description: 'copy commit messages from git log to the file' -outputs: - changelog: - description: 'changelog txt file for release description (release-body)' -runs: - using: 'docker' - image: 'Dockerfile' diff --git a/.github/actions/changelog/entrypoint.sh b/.github/actions/changelog/entrypoint.sh deleted file mode 100644 index deaf6f4004..0000000000 --- a/.github/actions/changelog/entrypoint.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh - -set -eou pipefail - -# simple changelog: get all commits beetween 2 tags and put them into file - -echo "Commits: " > changelog.md -#find previos tag -start_tag=$(git describe --abbrev=0 --tags --match 'v*') -if [ -n "${start_tag}" ]; then - git log "${start_tag}...HEAD" --pretty=format:"- %s" >> changelog.md -else - # first tag - git log --pretty=format:"- %s" >> changelog.md -fi - -cat changelog.md diff --git a/.github/workflows/release-post-merge.yml b/.github/workflows/release-post-merge.yml index 14c09aa68b..f21f32c358 100644 --- a/.github/workflows/release-post-merge.yml +++ b/.github/workflows/release-post-merge.yml @@ -86,11 +86,6 @@ jobs: tags: ${{ steps.tag.outputs.version }} build_args: VERSION=${{ steps.tag.outputs.tag }} - - name: Create simple description - uses: ./.github/actions/changelog - with: - tag: ${{ steps.tag.outputs.tag }} - - name: Create Release id: create_release uses: actions/create-release@v1