Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 310919d

Browse files
committed
Removing os matrix
1 parent 0a9e94a commit 310919d

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

.github/workflows/python-publish.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
on:
55
release:
66
types: [created, published]
7+
78
push:
89
tags:
910
- v*
@@ -13,18 +14,14 @@ name: Upload Python Package to PYPI
1314
jobs:
1415
deploy:
1516
name: Publish python packages
16-
runs-on: ${{ matrix.os }}
17-
strategy:
18-
matrix:
19-
python-version: [3.5, 3.6, 3.7, 3.8]
20-
os: [windows-2019, ubuntu-18.04, ubuntu-16.04, macos-10.15]
17+
runs-on: ubuntu-latest
2118
steps:
2219
- name: Checkout code
2320
uses: actions/checkout@v2
24-
- name: Set up Python ${{ matrix.python-version }}
21+
- name: Set up Python
2522
uses: actions/setup-python@v2
2623
with:
27-
python-version: ${{ matrix.python-version }}
24+
python-version: '3.x'
2825
- name: Install dependencies
2926
run: |
3027
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)