File tree 2 files changed +11
-10
lines changed
2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -7,19 +7,20 @@ name: Upload Python Package
7
7
8
8
on :
9
9
release :
10
- types : [published]
10
+ types :
11
+ - published
11
12
12
13
jobs :
13
14
build :
14
15
name : Build package
15
16
runs-on : ubuntu-latest
16
17
steps :
17
18
- name : Checkout code
18
- uses : actions/checkout@v2
19
+ uses : actions/checkout@v3
19
20
with :
20
21
fetch-depth : 0
21
22
- name : Set up Python
22
- uses : actions/setup-python@v2
23
+ uses : actions/setup-python@v4
23
24
with :
24
25
python-version : " 3.x"
25
26
- name : Install pypa/build
30
31
run : |
31
32
python -m build
32
33
- name : Upload dist files
33
- uses : actions/upload-artifact@v2
34
+ uses : actions/upload-artifact@v3
34
35
with :
35
36
name : dist-files
36
37
path : dist/
41
42
runs-on : ubuntu-latest
42
43
steps :
43
44
- name : Download dist files
44
- uses : actions/download-artifact@v2
45
+ uses : actions/download-artifact@v3
45
46
with :
46
47
name : dist-files
47
48
path : dist/
Original file line number Diff line number Diff line change @@ -5,17 +5,17 @@ name: Create GitHub Release
5
5
6
6
on :
7
7
push :
8
- tags : " v*.*.*"
8
+ tags :
9
+ - " v*.*.*"
9
10
10
11
jobs :
11
12
deploy :
12
13
name : Create Release
13
14
runs-on : ubuntu-latest
14
15
steps :
15
16
- name : Checkout
16
- uses : actions/checkout@v2
17
+ uses : actions/checkout@v3
17
18
- name : Release
18
19
uses : softprops/action-gh-release@v1
19
- env :
20
- GITHUB_TOKEN : ${{ secrets.GH_PAT }} # Private Acces Token
21
- # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Does not trigger release
20
+ with :
21
+ token : ${{ secrets.GH_PAT }}
You can’t perform that action at this time.
0 commit comments