automatic black update [24.1.1] (#28) #14
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 | |
on: | |
push: {branches: [master]} | |
jobs: | |
tag: | |
name: tag | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
- id: var | |
run: | | |
version="$(sed -E 's#black==(.*)#\1#g' ./requirements.txt)" | |
create_tag="$(git ls-remote --exit-code origin "refs/tags/$version" >/dev/null && echo false || echo true)" | |
echo "version=$version" >>$GITHUB_OUTPUT | |
echo "create_tag=$create_tag" >>$GITHUB_OUTPUT | |
- name: tag | |
if: steps.var.outputs.create_tag == 'true' | |
env: | |
VERSION: ${{ steps.var.outputs.version }} | |
run: | | |
git config --global user.name 'jacobi petrucciani' | |
git config --global user.email '[email protected]' | |
git tag -a "$VERSION" -m "$VERSION" | |
git push --tags |