Skip to content

Add atlassian-python-api to 3rd party modules #16

Add atlassian-python-api to 3rd party modules

Add atlassian-python-api to 3rd party modules #16

Workflow file for this run

name: Upload Python Package to PyPI
on:
push:
tags:
- '*'
jobs:
deploy:
if: github.repository_owner == 'arkq'
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/flake8-requirements
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build
run: python setup.py bdist_wheel
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1