feat: Added manager_huid field into UserFromCSV (#474) #98
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 python package | |
on: | |
push: | |
tags: | |
- "*.*.*" | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Assert tag is from master | |
run: git branch -a --contains $(git describe --tags) | grep master | |
- name: Build and publish to pypi | |
uses: JRubics/poetry-publish@v1.8 | |
with: | |
pypi_token: ${{ secrets.PYPI_TOKEN }} |