From 861b3f2448d6582a132dbddb800370d893d24e84 Mon Sep 17 00:00:00 2001 From: Volodymyr Pochtar Date: Tue, 1 Nov 2022 17:18:58 +0200 Subject: [PATCH] ci: use oldgithub actions notation for output in publish-helm-charts worklow --- .github/workflows/publish-helm-charts.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/publish-helm-charts.yml b/.github/workflows/publish-helm-charts.yml index b3afd70f2da9..d53feac9adf6 100644 --- a/.github/workflows/publish-helm-charts.yml +++ b/.github/workflows/publish-helm-charts.yml @@ -109,11 +109,7 @@ jobs: id: changelog run: | cd ./airbyte/ - changelog=$(PAGER=cat git log $(git describe --tags --match "*-helm" $(git rev-list --tags --max-count=1))..HEAD --oneline --decorate=no) - changelog="${changelog//'%'/'%25'}" - changelog="${changelog//$'\n'/'%0A'}" - changelog="${changelog//$'\r'/'%0D'}" - echo "${changelog}" >> $GITHUB_OUTPUT + echo "::set-output name=changelog::$(PAGER=cat git log $(git describe --tags --match "*-helm" $(git rev-list --tags --max-count=1))..HEAD --oneline --decorate=no)" - name: Create Pull Request uses: peter-evans/create-pull-request@v4