File tree Expand file tree Collapse file tree 1 file changed +20
-6
lines changed Expand file tree Collapse file tree 1 file changed +20
-6
lines changed Original file line number Diff line number Diff line change 15
15
- uses : actions/checkout@v4
16
16
- uses : ./.github/actions/setup
17
17
- 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
22
19
- name : test
23
- env :
24
- TEST_SUITE : each-package
25
20
run : pnpm test
26
21
27
22
release :
57
52
- name : push tag
58
53
# Push in a way that will NOT trigger other workflows
59
54
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
You can’t perform that action at this time.
0 commit comments