Update descriptions, rename to portal_url and portal_key, other minor… #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Universal DDI Python Client release workflow. | |
name: Release | |
# This GitHub action creates a release when a tag that matches the pattern | |
# "v*" (e.g. v0.1.0) is created. | |
on: | |
push: | |
tags: | |
- 'v*' | |
# Releases need permissions to read and write the repository contents. | |
# GitHub considers creating releases and uploading assets as writing contents. | |
permissions: | |
contents: write | |
id-token: write | |
jobs: | |
build-package: | |
name: Create and Store Python 🐍 distribution 📦 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Install pypa/build | |
run: python -m pip install build --user | |
- name: Build a package | |
run: python -m build | |
- name: Store the distribution packages | |
uses: actions/upload-artifact@v4 | |
with: | |
name: python-package-distributions | |
path: dist/ | |
publish-to-pypi: | |
name: Publish Python 🐍 distribution 📦 to PyPI | |
needs: | |
- build-package | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi-python-client | |
url: https://pypi.org/p/universal-ddi-python-client | |
steps: | |
- name: Download all the dists | |
uses: actions/download-artifact@v4 | |
with: | |
name: python-package-distributions | |
path: dist/ | |
- name: Publish distribution 📦 to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
verbose: true |