Skip to content

Commit 35834ea

Browse files
committed
Fix versioning scheme to be Pythonic
1 parent aaa2d8a commit 35834ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/rolling_tags.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
steps:
1515
- name: Get date
1616
run: |
17-
echo "NOW=$(date +'%Y%m%d-%H%M%S')" >> $GITHUB_ENV
17+
echo "NOW=$(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV
1818
- name: Create tag
1919
uses: actions/github-script@v8
2020
with:
2121
script: |
2222
github.rest.git.createRef({
2323
owner: context.repo.owner,
2424
repo: context.repo.repo,
25-
ref: 'refs/tags/0.6-${{ env.NOW }}',
25+
ref: 'refs/tags/0.6.dev${{ env.NOW }}',
2626
sha: context.sha
2727
})

0 commit comments

Comments
 (0)