Skip to content

Commit dea5a23

Browse files
committed
Fix GitHub actions
1 parent a15b0b4 commit dea5a23

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

.github/workflows/publish.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,20 @@ name: Upload Python Package
77

88
on:
99
release:
10-
types: [published]
10+
types:
11+
- published
1112

1213
jobs:
1314
build:
1415
name: Build package
1516
runs-on: ubuntu-latest
1617
steps:
1718
- name: Checkout code
18-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
1920
with:
2021
fetch-depth: 0
2122
- name: Set up Python
22-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@v4
2324
with:
2425
python-version: "3.x"
2526
- name: Install pypa/build
@@ -30,7 +31,7 @@ jobs:
3031
run: |
3132
python -m build
3233
- name: Upload dist files
33-
uses: actions/upload-artifact@v2
34+
uses: actions/upload-artifact@v3
3435
with:
3536
name: dist-files
3637
path: dist/
@@ -41,7 +42,7 @@ jobs:
4142
runs-on: ubuntu-latest
4243
steps:
4344
- name: Download dist files
44-
uses: actions/download-artifact@v2
45+
uses: actions/download-artifact@v3
4546
with:
4647
name: dist-files
4748
path: dist/

.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ name: Create GitHub Release
55

66
on:
77
push:
8-
tags: "v*.*.*"
8+
tags:
9+
- "v*.*.*"
910

1011
jobs:
1112
deploy:
1213
name: Create Release
1314
runs-on: ubuntu-latest
1415
steps:
1516
- name: Checkout
16-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1718
- name: Release
1819
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 }}

0 commit comments

Comments
 (0)