From 2f5628d71815c5af2aa17935e175799fc9febdeb Mon Sep 17 00:00:00 2001 From: Lucian Carata Date: Thu, 3 Oct 2024 00:12:35 +0100 Subject: [PATCH] feat(ci): test draft-release workflow --- .github/workflows/draft-release.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index e33636ae3d..7328ebc2c5 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -90,15 +90,15 @@ jobs: git add k8s/helm-charts && git commit -m "Setting version for helm charts" || echo "Nothing to commit" git add k8s/yaml && git commit -m "Setting version for yaml manifests" || echo "Nothing to commit" - - name: Prepare artifacts - run: | - make prep-artifacts + # - name: Prepare artifacts + # run: | + # make prep-artifacts - - name: Upload artifacts - uses: actions/upload-artifact@v3 - with: - name: artifacts - path: .release/ + # - name: Upload artifacts + # uses: actions/upload-artifact@v3 + # with: + # name: artifacts + # path: .release/ - name: Install auto-changelog tool run: | @@ -130,7 +130,7 @@ jobs: git add -A && git commit --amend --no-edit || echo "Nothing to commit" # Revert GitBook URL tags to point back to the files in the v2 branch for commits # after the release tag - git revert HEAD --no-commit && git commit --amend -m "Restore docs-gitbook code references for updates after ${RELEASE_TAG}" || echo "Nothing to commit" + git revert HEAD --no-commit && git commit -m "Restore docs-gitbook code references for updates after ${RELEASE_TAG}" || echo "Nothing to commit" fi - name: Generate release-notes.txt @@ -160,4 +160,4 @@ jobs: --target "${RELEASE_BRANCH}" \ .release/* env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GH_API_TOKEN }}