Skip to content

Commit 211e800

Browse files
committed
Add action
1 parent 90982a7 commit 211e800

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Release
2+
on:
3+
release:
4+
types: [published]
5+
jobs:
6+
release:
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "git_extract"
3-
version = "1.1.3"
3+
version = "1.1.4"
44
description = "Extract files or directories from a git repository"
55
authors = ["Marc Ford <mrfxyz567@gmail.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)