Skip to content

Commit

Permalink
add tagging by date and index within day
Browse files Browse the repository at this point in the history
  • Loading branch information
aridyckovsky committed May 4, 2024
1 parent d1e8b2c commit caa89dc
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/create-pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,17 @@ jobs:
name: cv
path: cv/cv.pdf
compression-level: 0 # don't compress PDF
- name: Tag
id: generate_release_tag
uses: amitsingh-007/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag_prefix: 'v'
tag_template: 'yyyy.mm.dd.i'
- name: Release
uses: ncipollo/release-action@v1
with:
tag: "test-release"
tag: ${{ steps.generate_release_tag.outputs.next_release_tag }}
artifacts: "cv/cv.pdf"
generateReleaseNotes: true
makeLatest: true

0 comments on commit caa89dc

Please sign in to comment.