Fix distribution directory #4
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: release-cli | |
on: | |
push: | |
tags: | |
- "cli-v*" | |
jobs: | |
build: | |
name: Publish CLI release | |
runs-on: "ubuntu-latest" | |
defaults: | |
run: | |
working-directory: ./cli | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install hatch | |
run: | | |
pip install hatch | |
- name: Check that versions match | |
id: version | |
run: | | |
echo "Release tag: [${{ github.ref_name }}]" | |
PACKAGE_VERSION=$(hatch run python -c "import rpzip; print(rpzip.__version__)") | |
echo "Package version: [$PACKAGE_VERSION]" | |
[ "${{ github.ref_name }}" == "cli-v$PACKAGE_VERSION" ] || { exit 1; } | |
echo "::set-output name=major_minor_version::v${PACKAGE_VERSION%.*}" | |
- name: Build package | |
run: | | |
hatch build | |
- name: Publish to Test PyPI | |
uses: pypa/gh-action-pypi-publish@v1.8.11 | |
with: | |
user: ${{ secrets.PYPI_TEST_USERNAME }} | |
password: ${{ secrets.PYPI_TEST_PASSWORD }} | |
repository-url: https://test.pypi.org/legacy/ | |
skip-existing: true | |
packages-dir: cli/dist/ | |
- name: Publish to Production PyPI | |
uses: pypa/gh-action-pypi-publish@v1.8.11 | |
with: | |
user: ${{ secrets.PYPI_PROD_USERNAME }} | |
password: ${{ secrets.PYPI_PROD_PASSWORD }} | |
skip-existing: false | |
packages-dir: cli/dist/ |