Skip to content

Commit cc5db96

Browse files
committed
fix alpha publishing
1 parent 040ebd4 commit cc5db96

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/alpha-releases.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@ jobs:
3939
LATEST_ALPHA=`npm view ember-source dist-tags.alpha`
4040
export NEXT_ALPHA=`node bin/next-alpha-version.js ${LATEST_ALPHA}`
4141
echo "NEXT_ALPHA=$NEXT_ALPHA" >> $GITHUB_ENV
42-
- name: tag the next alpha
43-
run: npm version ${{env.NEXT_ALPHA}} --allow-same-version
42+
- name: bump version
43+
run: npm version ${{env.NEXT_ALPHA}} --allow-same-version --no-git-tag-version
44+
- name: create tag
45+
run: git tag v${{env.NEXT_ALPHA}}-ember-source
4446
- name: build for publish
4547
env:
4648
BUILD_TYPE: alpha

0 commit comments

Comments
 (0)