Skip to content

0.2.4 | adds 'create_recipients" function to the Braze client #15

0.2.4 | adds 'create_recipients" function to the Braze client

0.2.4 | adds 'create_recipients" function to the Braze client #15

Workflow file for this run

name: Publish edx/braze-client to PyPI
on:
release:
types: [published]
branches: [main]
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install requirements
run: make requirements
- name: Build package
run: python setup.py sdist bdist_wheel
- name: Publish to PyPi
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_UPLOAD_TOKEN }}