diff --git a/.github/workflows/draft-release-notes.yml b/.github/workflows/draft-release-notes.yml index c9e0353..6b257cf 100644 --- a/.github/workflows/draft-release-notes.yml +++ b/.github/workflows/draft-release-notes.yml @@ -19,7 +19,18 @@ jobs: runs-on: ubuntu-latest steps: + - name: Generate CalVer version + id: calver + run: | + export VERSION="$(date "+%y.%-m").0" + echo "version=${VERSION}" >> $GITHUB_OUTPUT + echo "Version set to ${VERSION}" + - name: Draft release notes uses: release-drafter/release-drafter@v6 + with: + tag: ${{ steps.calver.outputs.version }} + name: ${{ steps.calver.outputs.version }} + version: ${{ steps.calver.outputs.version }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}