Restrict the Python requirement to 3.7, 3.8, and 3.9, because 3.10 an… #39
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: Tag development releases | |
on: | |
push: | |
branches: | |
- '[0-9].[0-9].x' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the source code | |
uses: actions/checkout@v3 | |
- name: Tag the development release | |
run: git tag "$(git rev-parse --abbrev-ref HEAD)-dev" | |
- name: Push the tag | |
run: git push origin "$(git rev-parse --abbrev-ref HEAD)-dev" |