Skip to content
This repository has been archived by the owner on Oct 9, 2020. It is now read-only.

Commit

Permalink
Merge pull request #7 from grooves/master
Browse files Browse the repository at this point in the history
Release 1.0.6
  • Loading branch information
tshotoku committed May 11, 2015
2 parents 71ebb43 + b819adf commit 499ecac
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ $ gulp

### production

TODO: write chrome web store url
This Chrome extention is available at the following Chrome Web Store.

https://chrome.google.com/webstore/detail/forkwell-jobs/eiblkhondfefcjdpmpcdmbnadfdgbfgc

### development

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "forkwell_for_chrome",
"version": "1.0.5",
"version": "1.0.6",
"description": "",
"main": "index.js",
"dependencies": {
Expand Down
Binary file added src/images/icon128_with_alpha_16px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion wercker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,15 @@ deploy:
token: $GITHUB_TOKEN
file: dist-$APP_VERSION.zip
- script:
name: Uploading a package to update an existing store item
name: Refresh a access token
code: |
JSON=`curl -d "client_id=$GOOGLE_APP_ID" -d "client_secret=$GOOGLE_APP_SECRET" -d "refresh_token=$GOOGLE_REFRESH_TOKEN" -d "grant_type=refresh_token" https://www.googleapis.com/oauth2/v3/token`
export GOOGLE_APP_TOKEN=`node -p "($JSON).access_token;"`
- script:
name: Upload a package to update an existing store item
code: |
curl -H "Authorization: Bearer $GOOGLE_APP_TOKEN" -H "x-goog-api-version: 2" -X PUT -T dist-$APP_VERSION.zip -v https://www.googleapis.com/upload/chromewebstore/v1.1/items/$APP_ID
- script:
name: Publish an item to the public
code: |
curl -H "Authorization: Bearer $GOOGLE_APP_TOKEN" -H "x-goog-api-version: 2" -H "Content-Length: 0" -X POST -v https://www.googleapis.com/chromewebstore/v1.1/items/$APP_ID/publish

0 comments on commit 499ecac

Please sign in to comment.