From d11f97bb30912b4a4c78573e986335b8da612444 Mon Sep 17 00:00:00 2001 From: Simon Liu Date: Mon, 21 Oct 2024 15:07:11 -0700 Subject: [PATCH] testing release step --- .github/workflows/build-pipeline.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build-pipeline.yml b/.github/workflows/build-pipeline.yml index 9582a68b..80df9098 100644 --- a/.github/workflows/build-pipeline.yml +++ b/.github/workflows/build-pipeline.yml @@ -307,3 +307,13 @@ jobs: working-directory: deployment run: poetry run python harmony_deploy.py --tag ${{ env.software_version }} + + + - name: Create Draft Release + id: create_release + uses: softprops/action-gh-release@v1 + with: + tag_name: "2.12.0a3" # Use the tag that triggered the action + release_name: Release test tag 2.12.0a3 + draft: true + token: ${{ secrets.GITHUB_TOKEN }}