You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you already setup ember-cli-deploy, the job in CircleCI config can be defined like:
jobs:
## Add this Jobdeploy:
<<: *defaultssteps:
- attach_workspace:
at: .
- run:
name: Run Deploycommand: yarn ember deploy productionworkflows:
version: 2test_and_deploy:
jobs:
## Add this to the workflow
- deploy:
requires:
- lint
- test
- test_lts_3_12
- test_lts_3_16
- test_lts_3_20
- test_release
- test_beta
- test_canary
- test_default_with_jquery
- test_classicfilters:
branches:
only:
- master
I guess if I'm adding a deploy option it will generate theses line for you.
And then you have to adapt to which environement you are going to deploy and if you need more ember-cli-deploy options (coming from addons)
The text was updated successfully, but these errors were encountered: