Skip to content

fix: allow multiple packages (#705) #63

fix: allow multiple packages (#705)

fix: allow multiple packages (#705) #63

Workflow file for this run

# name: Release new version
# on:
# push:
# # Sequence of patterns matched against refs/tags
# tags:
# - "v*.*.*" # Push events to matching v*, i.e. v1.0, v20.15.10
# - "!v*-snapshot"
# - "!vega*"
# jobs:
# release:
# name: Release
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ["3.10"]
# steps:
# - name: Check out code
# uses: actions/checkout@v3
# - name: Set up Python ${{ matrix.python-version }}
# id: setup-python
# uses: actions/setup-python@v3
# with:
# python-version: ${{ matrix.python-version }}
# - name: Deploy Package
# uses: JRubics/[email protected]
# with:
# python_version: ${{ matrix.python-version }}
# pypi_token: ${{ secrets.PYPI_TOKEN }}