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
{{ message }}
This repository was archived by the owner on Jun 19, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: tasks/build.yml
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -11,8 +11,13 @@
11
11
msg: "Unable to find a `composer.json` file in the root of '{{ ansistrano_release_path.stdout }}'. Make sure your repo has a `composer.json` file in its root or edit `subtree_path` for '{{ site }}' in `wordpress_sites.yml` so it points to the directory with a `composer.json` file."
12
12
when: fuel_setup_project and not composer_json.stat.exists
13
13
14
+
- name: FUEL | Fail if fuel_packagist_token is not set
15
+
fail:
16
+
msg: "A personal fuel_packagist_token must be set in your `deployment_vars_local.yml` file. Make sure to add single quotes around the token."
17
+
when: fuel_packagist_token is undefined or fuel_packagist_token is none or fuel_packagist_token | trim == ''
0 commit comments