diff --git a/.github/actions/release_milestone/action.yaml b/.github/actions/release_milestone/action.yaml index a91774b825..b99fbda2a8 100644 --- a/.github/actions/release_milestone/action.yaml +++ b/.github/actions/release_milestone/action.yaml @@ -63,3 +63,15 @@ runs: GREN_GITHUB_TOKEN: ${{ inputs.github_token }} run: | npx github-release-notes@0.17.1 release --tags "$MILESTONE" + + - name: Update version number to mark non-release version + shell: bash + env: + MILESTONE: ${{ inputs.milestone }} + GITHUB_TOKEN: ${{ inputs.github_token }} + GREN_GITHUB_TOKEN: ${{ inputs.github_token }} + run: | + echo "$MILESTONE+next" > layouts/partials/version.html + git add * + git commit --message "Ship tag $MILESTONE" + git push origin main