Skip to content

Commit

Permalink
Merge pull request #20753 from emberjs/update-tagging-strategy
Browse files Browse the repository at this point in the history
Update tagging strategy
  • Loading branch information
ef4 authored Sep 23, 2024
2 parents bf12787 + e42dfbc commit 8744d55
Show file tree
Hide file tree
Showing 5 changed files with 252 additions and 149 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/alpha-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- name: push tag
# Push in a way that will NOT trigger other workflows
run: git push origin v${{env.NEXT_ALPHA}}
run: git push origin v${{env.NEXT_ALPHA}}-ember-source

notify:
name: Notify Discord
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
run: pnpm vite build --mode=development

- name: Set BrowserStack Local Identifier
if: startsWith(github.ref, 'refs/tags/v')
if: startsWith(github.ref, 'refs/tags/v') && endsWith(github.ref, '-ember-source')
run: |
BROWSERSTACK_LOCAL_IDENTIFIER="$GITHUB_RUN_ID-$GITHUB_RUN_ATTEMPT"
echo "BROWSERSTACK_LOCAL_IDENTIFIER=$BROWSERSTACK_LOCAL_IDENTIFIER" >> $GITHUB_ENV
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
blueprint-test,
browser-test,
]
if: startsWith(github.ref, 'refs/tags/v')
if: startsWith(github.ref, 'refs/tags/v') && endsWith(github.ref, '-ember-source')
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
Expand Down
Loading

0 comments on commit 8744d55

Please sign in to comment.