Add initial interfaces and a more complete binding #8
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
name: Build, Test, and Publish | |
on: | |
# Run this workflow everytime a pull request is opened to main | |
# to test the changes. | |
pull_request: | |
branches: | |
- main | |
# Run this workflow every time a new release is created | |
release: | |
types: [published] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
deploy: | |
name: Build and deploy PyPi package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# Set up Python 3.x | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
# Install dependencies | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install build | |
# Get the version of the package | |
- name: Package Version | |
id: package-version | |
uses: paulhatch/semantic-version@v5.4.0 | |
with: | |
major_pattern: "(MAJOR)" | |
minor_pattern: "(MINOR)" | |
# Build the package using the version | |
- name: Build package | |
run: | | |
export MAJOR=${{ steps.package-version.outputs.major }} | |
export MINOR=${{ steps.package-version.outputs.minor }} | |
export PATCH=${{ steps.package-version.outputs.patch }} | |
echo "Building version $MAJOR.$MINOR.$PATCH" | |
python -m build | |
# Load the secret from 1Password | |
- name: Load secret | |
id: op-load-secret | |
uses: 1password/load-secrets-action@v2 | |
with: | |
export-env: false | |
env: | |
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} | |
SECRET: op://development/msmp5ffdzke4oke7o627ufud6e/credential | |
# Publish the package to PyPi if a release is created | |
- name: Publish package | |
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 | |
if: github.event_name == 'release' | |
with: | |
user: __token__ | |
password: ${{ steps.op-load-secret.outputs.SECRET }} |