Skip to content

Merge pull request #19 from wccdev/dev #22

Merge pull request #19 from wccdev/dev

Merge pull request #19 from wccdev/dev #22

Workflow file for this run

# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Build and publish
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and publish to private Python package repository
uses: JRubics/[email protected]
with:
repository_name: "WCC-PYPI"
repository_url: "https://pypi.wochacha.cn/"
repository_username: ${{ secrets.WCC_PYPI_USERNAME }}
repository_password: ${{ secrets.WCC_PYPI_PASSWORD }}