From cd6a9fd49371476d813e892956e2e920fcc3fb7e Mon Sep 17 00:00:00 2001 From: Tingluo Huang Date: Thu, 23 Mar 2023 22:44:49 -0400 Subject: [PATCH] Update update-main-version.yml --- .github/workflows/update-main-version.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/update-main-version.yml b/.github/workflows/update-main-version.yml index c1e046a..9e2b966 100644 --- a/.github/workflows/update-main-version.yml +++ b/.github/workflows/update-main-version.yml @@ -1,5 +1,5 @@ name: Update Main Version -run-name: Move ${{ github.event.inputs.main_version }} to ${{ github.event.inputs.target }} +run-name: Move ${{ github.event.inputs.major_version }} to ${{ github.event.inputs.target }} on: workflow_dispatch: @@ -7,11 +7,12 @@ on: target: description: The tag or reference to use required: true - main_version: + major_version: type: choice - description: The main version to update + description: The major version to update options: - v3 + - v2 jobs: tag: @@ -25,6 +26,6 @@ jobs: git config user.name github-actions git config user.email github-actions@github.com - name: Tag new target - run: git tag -f ${{ github.event.inputs.main_version }} ${{ github.event.inputs.target }} + run: git tag -f ${{ github.event.inputs.major_version }} ${{ github.event.inputs.target }} - name: Push new tag - run: git push origin ${{ github.event.inputs.main_version }} --force + run: git push origin ${{ github.event.inputs.major_version }} --force