Skip to content

Commit f7f6bfb

Browse files
committed
set python version and rollback python action
1 parent 8679f05 commit f7f6bfb

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@ name: Upload Python Package
22

33
on:
44
release:
5-
types: [published]
5+
types: [released]
66

77
jobs:
88
deploy:
99
runs-on: ubuntu-latest
10+
1011
steps:
1112
- uses: actions/checkout@v2
12-
- name: Set up Python
13-
uses: actions/setup-python@v2.0.2
13+
- name: Set up Python 3.7
14+
uses: actions/setup-python@v2
1415
with:
15-
python-version: '3.x'
16+
python-version: '3.7'
17+
1618
- name: Install dependencies
1719
run: |
1820
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)