Skip to content

Commit

Permalink
Merge pull request #4 from wgilder/main
Browse files Browse the repository at this point in the history
Bringing in release files
  • Loading branch information
walter-iriusrisk authored Sep 30, 2023
2 parents 105d3ad + 5ff82ef commit 3da035c
Show file tree
Hide file tree
Showing 3 changed files with 152 additions and 0 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/publish-apishell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# 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 to PyPi

on:
release:
types: [published]

permissions:
contents: read

jobs:
build:
name: Build distribution
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and source tarball
run: python3 -m build Integrations/ApiShell/ --outdir dist
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/

publish-to-pypi:
name: Publish Python distro to PyPi
needs:
- build
runs-on: ubuntu-latest

environment:
name: pypi

permissions:
id-token: write

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- name: Publish distribution to PyPi
uses: pypa/gh-action-pypi-publish@release/v1
65 changes: 65 additions & 0 deletions .github/workflows/publish-test-apishell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# 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 to Test PyPi

on:
release:
types: [prepublished]

permissions:
contents: read

jobs:
build:
name: Build distribution
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and source tarball
run: python3 -m build Integrations/ApiShell/ --outdir dist
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/

publish-to-testpypi:
name: Publish Python distro to TestPyPi
needs:
- build
runs-on: ubuntu-latest

environment:
name: testpypi
url: https://test.pypi.org/project/iriusrisk-apishell-v1/

permissions:
id-token: write

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- name: Publish distribution to TestPyPi
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
25 changes: 25 additions & 0 deletions Integrations/ApiShell/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"

[tool.pdm.build]
includes=["iriusrisk/"]

[project]
name = "iriusrisk_apishell_v1"
version = "0.2.0"
authors = [
{ name="Walter Gildersleeve", email="[email protected]"},
]
description = "Aids calling IriusRisk v1 APIs. Starting point when creating more complex scripts that create, call and process API calls."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]

[project.urls]
"Homepage" = "https://github.com/iriusrisk/IriusRisk-Central/tree/main/Integrations/ApiShell"
"Bug Tracker" = "https://github.com/iriusrisk/IriusRisk-Central/issues"

0 comments on commit 3da035c

Please sign in to comment.