File tree 2 files changed +30
-19
lines changed
2 files changed +30
-19
lines changed Original file line number Diff line number Diff line change
1
+ name : Bump Version
2
+
3
+ on :
4
+ workflow_dispatch :
5
+
6
+ jobs :
7
+ # --- Bump version
8
+ bump-version :
9
+
10
+ runs-on : ubuntu-latest
11
+ environment : deploy-pypi-test
12
+
13
+ steps :
14
+ - name : Checkout code
15
+ uses : actions/checkout@v4
16
+ with :
17
+ token : ${{ secrets.MY_TOKEN }}
18
+ - name : Bump versions
19
+ uses : remorses/bump-version@js
20
+ with :
21
+ version_file : ./arcade/VERSION
22
+ prerelease_tag : rc
23
+ env :
24
+ GITHUB_TOKEN : ${{ secrets.MY_TOKEN }}
Original file line number Diff line number Diff line change @@ -2,38 +2,25 @@ name: Distribute build to PyPi Production
2
2
3
3
on :
4
4
workflow_dispatch :
5
+ inputs :
6
+ tag :
7
+ description : ' Tag to deploy'
8
+ required : true
9
+ type : string
5
10
6
11
jobs :
7
- # --- Bump version
8
- bump-version :
9
-
10
- runs-on : ubuntu-latest
11
- environment : deploy-pypi-test
12
-
13
- steps :
14
- - name : Checkout code
15
- uses : actions/checkout@v4
16
- with :
17
- token : ${{ secrets.MY_TOKEN }}
18
- - name : Bump versions
19
- uses : remorses/bump-version@js
20
- with :
21
- version_file : ./arcade/VERSION
22
- prerelease_tag : rc
23
- env :
24
- GITHUB_TOKEN : ${{ secrets.MY_TOKEN }}
25
12
26
13
# --- Deploy to pypi
27
14
deploy-to-pypi-prod :
28
15
29
16
runs-on : ubuntu-latest
30
17
environment : deploy-pypi-prod
31
- needs : bump-version
32
18
steps :
33
19
- name : Checkout
34
20
uses : actions/checkout@v4
35
21
with :
36
22
fetch-tags : ' true'
23
+ ref : ${{ github.event.inputs.tag }}
37
24
- name : Set up Python
38
25
uses : actions/setup-python@v5
39
26
with :
You can’t perform that action at this time.
0 commit comments