From 1844bb0819eead94f33d048b918757a039dfa5a6 Mon Sep 17 00:00:00 2001 From: Kanad Gupta Date: Thu, 12 Dec 2024 18:44:29 -0600 Subject: [PATCH] ci(release): don't sync changes back to next --- .github/workflows/release.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 94da355ab..69a42ca12 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,12 +43,14 @@ jobs: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} run: npx semantic-release - - name: Sync changes back to next - if: ${{ github.ref }} == 'refs/heads/main' - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.RELEASE_GH_TOKEN }} - branch: next + ## the v9 branch is not syncing changes back to next so we can skip this step + ## as for why this step keeps getting hit despite the if-statement, no idea + # - name: Sync changes back to next + # if: ${{ github.ref }} == 'refs/heads/main' + # uses: ad-m/github-push-action@master + # with: + # github_token: ${{ secrets.RELEASE_GH_TOKEN }} + # branch: next # quick assertion to validate that rdme CLI can be installed and run on ubuntu postrelease: