Skip to content

Commit b699b6c

Browse files
authored
Merge pull request #20725 from emberjs/kg-fix-alphas
2 parents 4bd4aa8 + e347ed4 commit b699b6c

File tree

1 file changed

+20
-6
lines changed

1 file changed

+20
-6
lines changed

.github/workflows/alpha-releases.yml

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,8 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- uses: ./.github/actions/setup
1717
- name: build
18-
env:
19-
DISABLE_SOURCE_MAPS: true
20-
BROCCOLI_ENV: production
21-
run: pnpm ember build
18+
run: pnpm vite build --mode=development
2219
- name: test
23-
env:
24-
TEST_SUITE: each-package
2520
run: pnpm test
2621

2722
release:
@@ -57,3 +52,22 @@ jobs:
5752
- name: push tag
5853
# Push in a way that will NOT trigger other workflows
5954
run: git push origin v${{env.NEXT_ALPHA}}
55+
56+
notify:
57+
name: Notify Discord
58+
runs-on: ubuntu-latest
59+
needs:
60+
[
61+
test,
62+
release,
63+
]
64+
if: failure()
65+
steps:
66+
- uses: sarisia/actions-status-discord@v1
67+
with:
68+
webhook: ${{ secrets.FRAMEWORK_WEBHOOK }}
69+
status: 'Failure'
70+
title: 'Ember.js Alpha Release'
71+
color: 0xcc0000
72+
url: '${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}'
73+
username: GitHub Actions

0 commit comments

Comments
 (0)