Skip to content

Commit

Permalink
split releases into test and actual
Browse files Browse the repository at this point in the history
  • Loading branch information
walter-iriusrisk committed Sep 30, 2023
1 parent 6b3ab13 commit b11d738
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/publish-apishell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# separate terms of service, privacy policy, and support
# documentation.

name: Upload Python Package
name: Upload Python Package to PyPi

on:
release:
Expand Down Expand Up @@ -40,15 +40,14 @@ jobs:
name: python-package-distributions
path: dist/

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

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

permissions:
id-token: write
Expand All @@ -59,7 +58,5 @@ jobs:
with:
name: python-package-distributions
path: dist/
- name: Publish distribution to TestPyPi
- name: Publish distribution to PyPi
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
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/

0 comments on commit b11d738

Please sign in to comment.