We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c460d2 commit e4db2e5Copy full SHA for e4db2e5
.github/workflows/python-publish.yml
@@ -22,6 +22,8 @@ jobs:
22
run: |
23
python3 -m pip install poetry
24
poetry install --only main
25
+ - name: Prepair publish
26
+ run: make prepair-publish
27
- name: Build package
28
run: make build
29
- name: Publish package
Makefile
@@ -25,6 +25,9 @@ docs:
package: clean docs
poetry build
+prepair-publish:
+ sed -i "s/screw_step.png/https:\/\/raw.githubusercontent.com\/TheTesla\/stl2step\/refs\/tags\/$(version)\/screw_step.png/g" README.md
30
+
31
publish:
32
poetry publish
33
0 commit comments