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 90982a7 commit 211e800Copy full SHA for 211e800
.github/workflows/release.yml
@@ -0,0 +1,16 @@
1
+name: Release
2
+on:
3
+ release:
4
+ types: [published]
5
+jobs:
6
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - uses: actions/setup-python@v1
11
+ with:
12
+ python-version: '3.8'
13
+ architecture: x64
14
+ - run: pip install poetry==1.0.10
15
+ - run: poetry build
16
+ - run: poetry publish --username=__token__ --password=${{ secrets.PYPI_TOKEN }}
pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "git_extract"
-version = "1.1.3"
+version = "1.1.4"
description = "Extract files or directories from a git repository"
authors = ["Marc Ford <mrfxyz567@gmail.com>"]
license = "MIT"
0 commit comments