Skip to content

Commit 8744d55

Browse files
authored
Merge pull request #20753 from emberjs/update-tagging-strategy
Update tagging strategy
2 parents bf12787 + e42dfbc commit 8744d55

File tree

5 files changed

+252
-149
lines changed

5 files changed

+252
-149
lines changed

.github/workflows/alpha-releases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
5353
- name: push tag
5454
# Push in a way that will NOT trigger other workflows
55-
run: git push origin v${{env.NEXT_ALPHA}}
55+
run: git push origin v${{env.NEXT_ALPHA}}-ember-source
5656

5757
notify:
5858
name: Notify Discord

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
run: pnpm vite build --mode=development
127127

128128
- name: Set BrowserStack Local Identifier
129-
if: startsWith(github.ref, 'refs/tags/v')
129+
if: startsWith(github.ref, 'refs/tags/v') && endsWith(github.ref, '-ember-source')
130130
run: |
131131
BROWSERSTACK_LOCAL_IDENTIFIER="$GITHUB_RUN_ID-$GITHUB_RUN_ATTEMPT"
132132
echo "BROWSERSTACK_LOCAL_IDENTIFIER=$BROWSERSTACK_LOCAL_IDENTIFIER" >> $GITHUB_ENV
@@ -210,7 +210,7 @@ jobs:
210210
blueprint-test,
211211
browser-test,
212212
]
213-
if: startsWith(github.ref, 'refs/tags/v')
213+
if: startsWith(github.ref, 'refs/tags/v') && endsWith(github.ref, '-ember-source')
214214
steps:
215215
- uses: actions/checkout@v4
216216
- uses: ./.github/actions/setup

0 commit comments

Comments
 (0)