Skip to content

Restrict the Python requirement to 3.7, 3.8, and 3.9, because 3.10 an… #39

Restrict the Python requirement to 3.7, 3.8, and 3.9, because 3.10 an…

Restrict the Python requirement to 3.7, 3.8, and 3.9, because 3.10 an… #39

Workflow file for this run

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"