Skip to content

Update docs/requirements.txt #48

Update docs/requirements.txt

Update docs/requirements.txt #48

Workflow file for this run

# Publish package on main branch if it's tagged with 'v*'
# Ref: https://github.community/t/run-workflow-on-push-tag-on-specific-branch/17519
name: build & release
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
tags:
- 'v*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
release:
name: Create Release
runs-on: ubuntu-latest
strategy:
matrix:
python-versions: [3.11]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Temporarily disable this - I want it to trigger on merge, but it doesn't
# work (at least not on a tagged commit too)
# - name: Exit if not on main branch
# if: endsWith(github.ref, 'main') == false
# run: exit -1
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-versions }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox-gh-actions wheel
- name: Replace version in README
run: |
VERSION=$(grep -oP "__version__\s*=\s*'\K[^']+" dataclass_wizard/__version__.py)
echo "Extracted version: $VERSION"
sed -i "s/|version|/$VERSION/g" README.rst
- name: Build wheels and source tarball
run: >-
make dist
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
skip_existing: true