From eb4f89aa13393da499b264cf21b96901357264af Mon Sep 17 00:00:00 2001 From: Michal Checinski Date: Tue, 5 Mar 2024 11:35:54 +0100 Subject: [PATCH] COmment for push --- .github/workflows/release-go.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release-go.yml b/.github/workflows/release-go.yml index 3afbea252..26d63eb7b 100644 --- a/.github/workflows/release-go.yml +++ b/.github/workflows/release-go.yml @@ -170,15 +170,15 @@ jobs: git add . git commit -m "Update Go SDK to ${{ github.sha }}" - if [[ "${{ github.event.inputs.release_type }}" == "Dry Run" ]]; then - echo "===================================" - echo "[!] Dry Run - Skipping push" - echo "===================================" - git ls-files -m - exit 0 - else + # if [[ "${{ github.event.inputs.release_type }}" == "Dry Run" ]]; then + # echo "===================================" + # echo "[!] Dry Run - Skipping push" + # echo "===================================" + # git ls-files -m + # exit 0 + # else git push origin main - fi + # fi - name: Create release tag on SDK Go repo if: ${{ github.event.inputs.release_type != 'Dry Run' }}