Skip to content

Commit b3a2323

Browse files
committed
- Run workflows on latest Ubuntu & python 3.8
- Apply correct versioning convention to workflow trigger
1 parent ca9b856 commit b3a2323

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/publish-to-pypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ on:
66
jobs:
77
build-n-publish:
88
name: Publish Python 🐍 distribution 📦 to Pypi
9-
runs-on: ubuntu-18.04
9+
runs-on: ubuntu-20.04
1010
steps:
1111
- uses: actions/checkout@master
12-
- name: Set up Python 3.7
12+
- name: Set up Python 3.8
1313
uses: actions/setup-python@v1
1414
with:
15-
python-version: 3.7
15+
python-version: 3.8
1616
- name: Install pypa/build
1717
run: >-
1818
python -m

.github/workflows/publish-to-test-pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ name: Publish beta Python 🐍 distributions 📦 to TestPyPI
22
on:
33
push:
44
tags:
5-
- 'v*.*.*b*'
5+
- '*.*.*b*'
66

77
jobs:
88
build-n-publish:
99
name: Publish beta Python 🐍 distributions 📦 to TestPyPI
10-
runs-on: ubuntu-18.04
10+
runs-on: ubuntu-20.04
1111
steps:
1212
- uses: actions/checkout@master
13-
- name: Set up Python 3.7
13+
- name: Set up Python 3.8
1414
uses: actions/setup-python@v1
1515
with:
16-
python-version: 3.7
16+
python-version: 3.8
1717
- name: Install pypa/build
1818
run: >-
1919
python -m

0 commit comments

Comments
 (0)