fix: [ISSUE-68] send_multicast method causes HTTP 404 response (#69) #84
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: CD | |
on: | |
push: | |
branches: | |
- "master" | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
env: | |
POETRY_VERSION: 1.5.1 | |
jobs: | |
create-virtualenv: | |
runs-on: ubuntu-latest | |
steps: | |
- name: source code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: ${{ env.POETRY_VERSION }} | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- name: Load cached venv | |
id: cached-poetry-dependencies | |
uses: actions/cache@v3 | |
with: | |
path: .venv | |
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} | |
- name: Install Dependencies | |
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
run: poetry install --no-interaction -vv | |
- name: Log currently installed packages and versions | |
run: poetry show | |
release: | |
needs: create-virtualenv | |
runs-on: ubuntu-latest | |
steps: | |
- name: source code | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: actions/setup-python@v4 | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: ${{ env.POETRY_VERSION }} | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- name: Release to PyPI | |
if: startsWith(github.ref, 'refs/tags/') | |
env: | |
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | |
POETRY_VERSION: ${{ env.POETRY_VERSION }} | |
run: | | |
poetry build | |
poetry config pypi-token.pypi $PYPI_TOKEN | |
poetry publish |