We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 040ebd4 commit cc5db96Copy full SHA for cc5db96
.github/workflows/alpha-releases.yml
@@ -39,8 +39,10 @@ jobs:
39
LATEST_ALPHA=`npm view ember-source dist-tags.alpha`
40
export NEXT_ALPHA=`node bin/next-alpha-version.js ${LATEST_ALPHA}`
41
echo "NEXT_ALPHA=$NEXT_ALPHA" >> $GITHUB_ENV
42
- - name: tag the next alpha
43
- run: npm version ${{env.NEXT_ALPHA}} --allow-same-version
+ - name: bump version
+ 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
46
- name: build for publish
47
env:
48
BUILD_TYPE: alpha
0 commit comments