We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a0dbf8 commit 96f9ad3Copy full SHA for 96f9ad3
.github/workflows/main.yml
@@ -1,15 +1,14 @@
1
-name: BuildWindows
2
-
+name: BuildInstallCoops
3
on:
4
- push:
5
- tags:
6
- - '*'
7
+ workflow_dispatch:
+ inputs:
+ tagname:
+ description: 'Tag'
+ required: true
8
+ default: ''
9
jobs:
10
build:
11
runs-on: windows-latest
12
13
steps:
14
- uses: actions/checkout@v1
15
- name: Set up Python 3.8
@@ -37,8 +36,8 @@ jobs:
37
36
with:
38
draft: false
39
prerelease: false
40
- tag_name: ${{ github.ref }}
41
- release_name: ${{ github.ref }}
+ tag_name: ${{ github.event.inputs.tagname }}
+ release_name: ${{ github.event.inputs.tagename }}
42
- name: upload windows artifact
43
uses: actions/upload-release-asset@v1
44
env:
0 commit comments