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 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 :
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
You can’t perform that action at this time.
0 commit comments