Skip to content

Commit

Permalink
Merge pull request #20725 from emberjs/kg-fix-alphas
Browse files Browse the repository at this point in the history
  • Loading branch information
kategengler authored Jul 25, 2024
2 parents 4bd4aa8 + e347ed4 commit b699b6c
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions .github/workflows/alpha-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,8 @@ jobs:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: build
env:
DISABLE_SOURCE_MAPS: true
BROCCOLI_ENV: production
run: pnpm ember build
run: pnpm vite build --mode=development
- name: test
env:
TEST_SUITE: each-package
run: pnpm test

release:
Expand Down Expand Up @@ -57,3 +52,22 @@ jobs:
- name: push tag
# Push in a way that will NOT trigger other workflows
run: git push origin v${{env.NEXT_ALPHA}}

notify:
name: Notify Discord
runs-on: ubuntu-latest
needs:
[
test,
release,
]
if: failure()
steps:
- uses: sarisia/actions-status-discord@v1
with:
webhook: ${{ secrets.FRAMEWORK_WEBHOOK }}
status: 'Failure'
title: 'Ember.js Alpha Release'
color: 0xcc0000
url: '${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}'
username: GitHub Actions

0 comments on commit b699b6c

Please sign in to comment.