Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Always run the "Build extensions" step #1077

Merged
merged 1 commit into from
Nov 13, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,8 @@ jobs:
run: EMBER_ENV=test yarn ember test --path dist --filter="Ember Debug"

build:
name: Build for publishing
needs:
- test
- ember-try
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
name: Build extensions
needs: test
runs-on: ubuntu-latest
env:
CI: 'true'
Expand Down Expand Up @@ -126,7 +123,9 @@ jobs:

publish-bookmarklet:
name: Publish bookmarklet
needs: build
needs:
- build
- ember-try
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
Expand Down