Skip to content

Commit e0b29cd

Browse files
Michael YuanMichael Yuan
authored andcommitted
Remove workflow_dispatch from release CI
1 parent be25522 commit e0b29cd

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@ name: Release
33
on:
44
release:
55
types: [published]
6-
workflow_dispatch:
7-
inputs:
8-
tag:
9-
description: "Release tag (e.g. v0.1.9)"
10-
required: true
116

127
jobs:
138
tokenizers:
@@ -157,6 +152,4 @@ jobs:
157152
- name: Upload release asset
158153
env:
159154
GH_TOKEN: ${{ github.token }}
160-
run: |
161-
TAG="${{ github.event.release.tag_name || inputs.tag }}"
162-
gh release upload "$TAG" "${{ matrix.asset-name }}.zip"
155+
run: gh release upload "${{ github.event.release.tag_name }}" "${{ matrix.asset-name }}.zip"

0 commit comments

Comments
 (0)