| - name: Check extension_id, credentials.clientId, credentials.refreshToken are set |
| extension_id is not defined or credentials.clientId is not defined or |
| credentials.refreshToken is not defined |
| msg: "extension_id, credentials.clientId and credentials.refreshToken must be set" |
| make_target: release_chromium_canary |
| - name: Get name of the compiled ZIP file |
| cmd: "ls -Art | tail -n 1" |
| chdir: "{{ zuul.project.src_dir }}/out" |
| - name: Check the ZIP file name is non-empty |
| when: zip_file.stdout == "" |
| msg: "zip_file.stdout is empty" |
| - name: Print ZIP file name |
| when: not (zip_file.stdout == "") |
| msg: "zip_file.stdout is \"{{ zip_file.stdout }}\"" |
| - name: Upload and publish the ZIP file to the Chrome Web Store |
| chrome-webstore-upload upload --auto-publish --extension-id {{ extension_id }} \ |
| --source {{ zip_file.stdout|quote }} \ |
| --client-id {{ credentials.clientId|quote }} \ |
| --refresh-token {{ credentials.refreshToken|quote }} \ |
| chdir: "{{ zuul.project.src_dir }}/out" |
| - not (uploadcmd.rc == 0 or ('ITEM_NOT_UPDATABLE' in uploadcmd.stdout)) |