We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b852611 commit d5c95d3Copy full SHA for d5c95d3
.github/workflows/release-to-pypi.yaml
@@ -1,5 +1,6 @@
1
+---
2
name: release-to-pypi
-on:
3
+"on":
4
push:
5
tags:
6
- '*'
@@ -15,7 +16,9 @@ jobs:
15
16
- name: checkout
17
run: git fetch --prune --unshallow
18
- name: install environment
- run: pip install pipenv && pipenv sync -d
19
+ run: |
20
+ pip install build
21
+ pip install -e .
22
- name: build
23
run: pipenv run make build
24
- name: upload to pypi
0 commit comments