Skip to content

Commit 3caae18

Browse files
committed
chore: bump version number (v2024.3.5 -> v2024.3.6)
feat: added automatic release notes generation fix: fixed version generation
1 parent 5429857 commit 3caae18

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/prerelease_on_version_bump.yaml

+12-12
Original file line numberDiff line numberDiff line change
@@ -93,18 +93,18 @@ jobs:
9393
echo "EOF"
9494
} >> $GITHUB_ENV
9595
96-
- name: Create Tag
97-
if: ${{ env.CURRENT_VERSION != env.PREVIOUS_VERSION }}
98-
uses: actions/github-script@v7
99-
with:
100-
script: |
101-
const version = '${{ steps.current_version.outputs.version }}';
102-
github.rest.git.createRef({
103-
owner: context.repo.owner,
104-
repo: context.repo.repo,
105-
ref: `refs/tags/v${version}`,
106-
sha: '${{ github.sha }}'
107-
});
96+
# - name: Create Tag
97+
# if: ${{ env.CURRENT_VERSION != env.PREVIOUS_VERSION }}
98+
# uses: actions/github-script@v7
99+
# with:
100+
# script: |
101+
# const version = '${{ steps.current_version.outputs.version }}';
102+
# github.rest.git.createRef({
103+
# owner: context.repo.owner,
104+
# repo: context.repo.repo,
105+
# ref: `refs/tags/v${version}`,
106+
# sha: '${{ github.sha }}'
107+
# });
108108

109109
- name: Create Pre-release
110110
if: ${{ env.CURRENT_VERSION != env.PREVIOUS_VERSION }}

0 commit comments

Comments
 (0)