test: add a test for exclude #21
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 | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GH_PAT }} | |
- name: pants_init | |
uses: "./.github/templates/pants_init" | |
with: | |
gh_pat: secrets.GH_PAT | |
- name: publish_to_pypi | |
env: | |
PANTS_TWINE_ARGS: "['-p ${{ secrets.TWINE_PASSWORD }}', '-u __token__']" | |
VERSION: ${{ github.ref_name }} | |
run: | | |
pants publish zero_3rdparty/src/:: | |
pants publish model_lib/src/:: | |
pants publish docker_compose_parser/src/:: | |
pants publish compose_chart_export/src/:: |