From 987e8bb2a005ac448349c0727a2f7cd5a045f8d8 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Fri, 22 Sep 2023 16:31:00 +1000 Subject: [PATCH] Hack for testing --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 24ca09ec00e..b15a3f495a3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,6 +2,8 @@ name: Release Suite on: push: + branches: + - fix-release-ci tags: - v* @@ -22,7 +24,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Extract version - run: echo "VERSION=$(echo ${GITHUB_REF#refs/tags/})" >> $GITHUB_OUTPUT + # run: echo "VERSION=$(echo ${GITHUB_REF#refs/tags/})" >> $GITHUB_OUTPUT + # TODO(paul): remove the line below and uncomment the line above. + run: echo "VERSION=test_only" >> $GITHUB_OUTPUT id: extract_version outputs: VERSION: ${{ steps.extract_version.outputs.VERSION }}