PyPI Build Single Platform & Python Version Adapters #22
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
# YAML schema for GitHub Actions: | |
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions | |
# | |
# Helpful YAML parser to clarify YAML syntax: | |
# https://yaml-online-parser.appspot.com/ | |
# | |
name: PyPI Build Single Platform & Python Version Adapters | |
on: | |
workflow_dispatch: | |
inputs: | |
runner: | |
description: 'Hosted Runner' | |
required: true | |
default: Linux_runner_8_core | |
type: choice | |
options: | |
- Linux_runner_8_core | |
- macos-latest | |
- macos-13 | |
python-version: | |
description: 'Python Version' | |
required: true | |
default: '3.11' | |
type: choice | |
options: | |
- '3.12' | |
- '3.11' | |
- '3.10' | |
- '3.9' | |
package-version: | |
description: 'Package Version' | |
required: true | |
default: '0.0.0' | |
type: string | |
jobs: | |
build_release: | |
runs-on: ${{ github.event.inputs.runner }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ github.event.inputs.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ github.event.inputs.python-version }} | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools | |
python -m pip install wheel numpy twine | |
- name: Build Package | |
run: | | |
cd ./src/builtin-adapter | |
./python/pip_package/build_pip_package.sh ${{ github.event.inputs.package-version }} | |
- name: Verify the Distribution | |
run: twine check ./src/builtin-adapter/gen/adapter_pip/dist/* | |
- name: Check Directory Output | |
run: ls -l ./src/builtin-adapter/gen/adapter_pip/dist/*.whl | |
- name: Get Current Date | |
id: date | |
run: echo "date=$(date +'%Y%m%d')" >> "$GITHUB_OUTPUT" | |
- name: Upload Release Asset | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: ./src/builtin-adapter/gen/adapter_pip/dist/*.whl | |
prerelease: true | |
tag_name: adapter-v${{ github.event.inputs.package-version }}-${{ steps.date.outputs.date }} |