From c67bb2092d6d4797a376f63c3b26595a34e94bdc Mon Sep 17 00:00:00 2001 From: Tushar Naik Date: Fri, 4 Nov 2022 16:50:55 +0530 Subject: [PATCH] fixes in the deploy yml --- .github/workflows/manual-deploy.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/manual-deploy.yml b/.github/workflows/manual-deploy.yml index 9474d6d..153e478 100644 --- a/.github/workflows/manual-deploy.yml +++ b/.github/workflows/manual-deploy.yml @@ -66,14 +66,16 @@ jobs: - name: "📑 Setup release information" run: | pom_version=`xmllint --xpath '/*[local-name()="project"]/*[local-name()="version"]/text()' pom.xml` - echo "POM_VERSION=$pom_version" >> $GITHUB_ENV- name: "✏️ Generate release changelog" + echo "POM_VERSION=$pom_version" >> $GITHUB_ENV + + - name: "✏️ Generate release changelog" id: extract-release-changelog uses: heinrichreimer/github-changelog-generator-action@v2.3 with: token: ${{ secrets.GITHUB_TOKEN }} - onlyLastTag: true - stripHeaders: true - stripGeneratorNotice: true + onlyLastTag: "true" + stripHeaders: "true" + stripGeneratorNotice: "true" - name: "📍 Create release" uses: actions/create-release@v1 @@ -108,6 +110,4 @@ jobs: CI_USER: github-actions CI_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - git push "https://$CI_USER:$CI_TOKEN@github.com/$GITHUB_REPOSITORY.git" HEAD:master - - + git push "https://$CI_USER:$CI_TOKEN@github.com/$GITHUB_REPOSITORY.git" HEAD:master \ No newline at end of file