Merge pull request #55 from smartystreets/eric/fix-retry-logic #44
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
# This workflow will upload a Python Package using Twine when a release is created | |
name: Make Package # whenever you push to any branch you should run make package, but not the publish | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' | |
- name: Package | |
run: VERSION="${GITHUB_REF#refs/*/}" make package |