Skip to content

[automate_versioning] Release 3.7.8 #12

[automate_versioning] Release 3.7.8

[automate_versioning] Release 3.7.8 #12

Workflow file for this run

name: release apps
on:
push:
branches-ignore:
- '**'
tags:
- '[0-9]+.[0-9]+.[0-9]+'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
pip install wheel
- name: Build
run: |
poetry config pypi-token.pypi "${{ secrets.PYPI_TOKEN }}"
poetry build
poetry publish