Skip to content

Commit

Permalink
Merge pull request #16 from jrperin/feature/actions_workflow
Browse files Browse the repository at this point in the history
adding github actions to package
  • Loading branch information
jrperin authored Sep 21, 2023
2 parents 94d3d1a + 13e9c83 commit f198773
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 3 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Upload Python Package

on:
pull_request:
branches:
- master
push:
branches:
- master

permissions:
contents: read

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[project]
version = "1.0.5"
name = "coboljsonifier"
[build-system]
requires=[
"setuptools>=42",
"wheel"
]
buildbackend = "setuptools.build_meta"
build-backend = "setuptools.build_meta"
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = coboljsonifier
version = 1.0.3
version = 1.0.5
description = Convert cobol copybook to Json and parse data files based on it
long_description = file: README.md
long_description_content_type = text/markdown
Expand All @@ -17,7 +17,7 @@ classifiers =
package_dir =
= src
packages = find:
python_requires = >=3.8
python_requires = >=3.7

[options.packages.find]
where = src

0 comments on commit f198773

Please sign in to comment.