Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Commit

Permalink
fix: fix deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
TaykYoku committed Dec 14, 2021
1 parent 62ef326 commit 5d41222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: Deployment
on:
push:
tags:
- v1r[0-9]+
pull_request:

jobs:
Expand All @@ -22,6 +21,7 @@ jobs:
run: python -m readme_renderer README.* -o /tmp/README.html
- name: Make PEP-440 style release on GitHub
id: PEP-440
if: github.event_name == 'push'
run: |
TAG_NAME=${GITHUB_REF##*/}
NEW_STYLE=$(python -c "import diraccfg; major, minor, patch, pre = diraccfg.parseVersion('${TAG_NAME}'); print(f'{major}.{minor}.{patch}', f'a{pre}' if pre else '', sep='')")
Expand Down

0 comments on commit 5d41222

Please sign in to comment.