This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
dev-uxmt: convert and push hubspoke/mesh, fix bugs, bump version (#701) #22
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: Publish to PyPi | |
on: | |
push: | |
tags: | |
- '*.*.*' | |
jobs: | |
publish_release: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- if: ${{ env.ACT }} | |
name: Hack container for local development | |
run: | | |
curl -fsSL https://deb.nodesource.com/setup_12.x | sudo -E bash - | |
sudo apt-get install -y nodejs | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Set Up Poetry | |
uses: abatilo/[email protected] | |
with: | |
poetry-version: 1.3.1 | |
- name: Publish catalystwan | |
run: | | |
poetry config pypi-token.pypi ${{ secrets.CATALYSTWAN_PYPI_TOKEN }} | |
poetry publish --build |