diff options
| author | 2024-09-08 05:12:28 +0800 | |
|---|---|---|
| committer | 2024-09-08 05:12:28 +0800 | |
| commit | 40d6978d9335902f8ea2f60a033029a24e46f278 (patch) | |
| tree | e064dc8f52b1dde1ed33fc2c4cba91e7e088e4e4 | |
| parent | d38d01df5d4654bff2cf5b1b4cc4495bcc66c3ba (diff) | |
| download | HydroRoll-40d6978d9335902f8ea2f60a033029a24e46f278.tar.gz HydroRoll-40d6978d9335902f8ea2f60a033029a24e46f278.zip | |
chore(workflow): update release workflow to remove branch input and add reason input (#106)
| -rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b2f9f56..14870b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,17 +7,17 @@ name: Release on: push: - branches: - - main + # branches: + # - main tags: - 'v*' pull_request: workflow_dispatch: inputs: - version: + reason: type: string required: true - description: 'The version to update' + description: 'The reason to manually trigger release(build only)' permissions: contents: read |
