Skip to content

Modified workflow and pyproject.toml for tag suffix #35

Modified workflow and pyproject.toml for tag suffix

Modified workflow and pyproject.toml for tag suffix #35

Workflow file for this run

name: Release to PyPI
on:
release:
types: [published]
push:
tags:
- v*.*.*s
branches:
- microsoft_365_defender_stub # Target only the stub branch
jobs:
build-and-publish:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
cache: poetry
- name: Verify versioning
run: |
# Strip the "s" suffix from the Git tag
TAG_VERSION="${GITHUB_REF#refs/tags/v}"
TAG_VERSION="${TAG_VERSION%s}"
# Compare stripped tag with the version in pyproject.toml
[ "$(poetry version -s)" == "$TAG_VERSION" ]
- name: Install dependencies
run: poetry install
#- name: Run tests
# run: poetry run pytest
- name: Build packages
run: poetry build
- name: Configure Poetry
run: |
poetry config repositories.testpypi https://test.pypi.org/legacy/
poetry config pypi-token.testpypi ${{ secrets.TEST_PYPI_API_TOKEN }}
poetry config pypi-token.pypi "${{ secrets.PYPI_API_TOKEN }}"
#- name: Publish to test PyPI
# if: ${{ github.event_name == 'push' }}
# run: poetry publish -r testpypi
- name: Publish to PyPI
if: ${{ github.event_name == 'release' }}
run: poetry publish