Skip to content

Commit a4efb42

Browse files
authored
Merge pull request #5 from GaijinEntertainment/fix-release-flow
Fix release flow
2 parents ab3f5a6 + ba6a1f1 commit a4efb42

1 file changed

Lines changed: 0 additions & 19 deletions

File tree

.github/workflows/release.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ on:
1010
description: 'Version to release (e.g., 1.0.0)'
1111
required: true
1212
type: string
13-
create_tag:
14-
description: 'Create tag for this version'
15-
required: true
16-
type: boolean
17-
default: true
1813

1914
env:
2015
PYTHON_VERSION: "3.11"
@@ -108,20 +103,6 @@ jobs:
108103
exit 1
109104
fi
110105
111-
create-tag:
112-
runs-on: ubuntu-latest
113-
needs: validate-version
114-
if: github.event_name == 'workflow_dispatch' && github.event.inputs.create_tag == 'true'
115-
steps:
116-
- uses: actions/checkout@v4
117-
118-
- name: Create and push tag
119-
run: |
120-
git config user.name "github-actions[bot]"
121-
git config user.email "github-actions[bot]@users.noreply.github.com"
122-
git tag ${{ needs.validate-version.outputs.tag_name }}
123-
git push origin ${{ needs.validate-version.outputs.tag_name }}
124-
125106
build:
126107
runs-on: ubuntu-latest
127108
needs: validate-version

0 commit comments

Comments
 (0)