summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2021-04-20 10:07:15 +0200
committernicolargo <nicolas@nicolargo.com>2021-04-20 10:07:15 +0200
commita90d1056d855744b3b033cb1572708b795c25353 (patch)
treece36eea5e8d890c30409f83bc54b034187d6e706
parent5e299a0400734249a9946178122662da1aab740d (diff)
Allow CI pipeline to install on Test PyPIissue1850
-rw-r--r--.github/workflows/main.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 5a3ee9d7..e281a2ad 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -88,8 +88,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- - name: Install pypa/build
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
+ - name: Install pip
+ if: github.event_name == 'push'
run: >-
python -m
pip install
@@ -97,7 +97,7 @@ jobs:
--user
- name: Build a binary wheel and a source tarball
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
+ if: github.event_name == 'push'
run: >-
python -m
build