Skip to content

Commit

Permalink
add poetry dynamic-versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Payne committed Jan 5, 2023
1 parent 646b36b commit 64f8aac
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 9 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/release_workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Upload Python Package

on:
release:
types: [created]

jobs:
build_deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Build package
run: |
poetry self add "poetry-dynamic-versioning[plugin]"
poetry config repositories.testpypi https://test.pypi.org/legacy/
poetry dynamic-versioning --no-cache
poetry build
- name: Upload wheel to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/*.whl
tag: ${{ github.ref }}
overwrite: true
file_glob: true
- name: Deploy to PyPI
run: |
poetry publish -r testpypi -u "__token__" -p "${{ secrets.TEST_PYPI_TOKEN }}"
poetry publish -u "__token__" -p "${{ secrets.PYPI_TOKEN }}"
24 changes: 15 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,30 @@
[tool.poetry]
name = "target-singer-jsonl"
version = "0.1.0"
description = ""
version = "0.0.0"
description = "A Singer.io target for writing singer-formatted JSONL files to various destinations (e.g. local or s3)."
authors = ["Ken Payne <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "target_singer_jsonl"}]
keywords = [
"ELT",
"Singer.io",
]

[tool.poetry.dependencies]
python = "^3.10"
jsonschema = "^4.17.3"
smart-open = {extras = ["s3"], version = "^6.3.0"}

[tool.poetry.group.dev.dependencies]
tap-carbon-intensity = {git = "https://gitlab.com/meltano/tap-carbon-intensity.git"}
[tool.poetry.scripts]
# CLI declaration
target-singer-jsonl = 'target_singer_jsonl:main'

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.8", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"

[tool.poetry.scripts]
# CLI declaration
target-singer-jsonl = 'target_singer_jsonl:main'
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"

0 comments on commit 64f8aac

Please sign in to comment.