From 4eb2d38b725f153d199cda631130ad3a62a7e180 Mon Sep 17 00:00:00 2001 From: Filipe Freire Date: Mon, 26 Feb 2024 15:34:18 +0000 Subject: [PATCH] comment out changelog temporarily --- .github/workflows/release-start.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release-start.yml b/.github/workflows/release-start.yml index 5a1149e5b50..d6a920fe32e 100644 --- a/.github/workflows/release-start.yml +++ b/.github/workflows/release-start.yml @@ -21,14 +21,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout branch - uses: actions/checkout@v4 + uses: actions/checkout@v3 with: token: ${{ secrets.GITHUB_TOKEN }} ref: develop fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v3 with: node-version-file: ".nvmrc" cache: 'npm' @@ -71,7 +71,7 @@ jobs: branch: ${{ env.RELEASE_BRANCH }} - name: Checkout branch - uses: actions/checkout@v4 + uses: actions/checkout@v3 with: ref: ${{ env.RELEASE_BRANCH }} persist-credentials: false @@ -102,15 +102,15 @@ jobs: - name: Git Commit run: git commit -am "Bump app version to ${{ env.RELEASE_VERSION }}" - - name: Update CHANGELOG - id: changelog - uses: requarks/changelog-action@v1 - with: - token: ${{ secrets.RELEASE_GH_TOKEN }} - tag: ${{ github.sha }} + # - name: Update CHANGELOG + # id: changelog + # uses: requarks/changelog-action@v1 + # with: + # token: ${{ secrets.RELEASE_GH_TOKEN }} + # tag: ${{ github.ref_name }} - - name: Git Commit Changelog - run: git commit -am "update CHANGELOG.md for ${{ env.RELEASE_VERSION }} [skip ci]" + # - name: Git Commit Changelog + # run: git commit -am "update CHANGELOG.md for ${{ env.RELEASE_VERSION }} [skip ci]" - name: Git Push changes run: |