Skip to content

Commit

Permalink
Merge pull request #93 from uicrooks/dev
Browse files Browse the repository at this point in the history
v3.1.1
  • Loading branch information
sergejcodes authored Jun 28, 2021
2 parents 393968d + a065e32 commit d4df723
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .config/shopify/shopify.sample.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# if you are manually initializing the local config:
# don't forget to set the correct environment on the next line, either 'dev:' or 'live:'
dev:
password: [your-password]
password: [your-api-password]
theme_id: "[your-theme-id]"
store: [your-store].myshopify.com
directory: shopify
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Shopify Theme Lab is a customizable modular development environment for blazing-

<!-- button-youtube-quick-start (start) -->
<p>
<a href="https://youtu.be/_jFoPw_n9g4">
<a href="https://www.youtube.com/watch?v=y_1vCwzB9BA&list=PLG6jOAX6V-52wKN4AhFRxhtHk1FpRKgo0">
<img src=".github/img/button-youtube-quick-start.svg" width="250px">
</a>
</p>
Expand Down Expand Up @@ -162,7 +162,7 @@ $ yarn install --force
> `npm` requires the extra `--` before any arguments! When using `yarn` you can omit them.
```sh
$ npm run shopify:init -- --password [your-password] --store [your-store.myshopify.com] --env [dev or live] --name [theme-name]
$ npm run shopify:init -- --password [your-api-password] --store [your-store.myshopify.com] --env [dev or live] --name [theme-name]
```

3. Publish the new theme through the Shopify panel: **your-store.myshopify.com/admin/themes**
Expand Down Expand Up @@ -201,7 +201,7 @@ The `shopify:init` task always creates a new theme with a unique ID for the prov
1. Run the following command to list all themes from the provided store and write down the ID for the theme in question:

```sh
$ npm run shopify:themes -- --password [your-password] --store [your-store.myshopify.com]
$ npm run shopify:themes -- --password [your-api-password] --store [your-store.myshopify.com]
```

2. Copy and rename the Shopify sample config file:
Expand All @@ -219,7 +219,7 @@ $ cp .config/shopify/shopify.sample.yml .config/shopify/shopify.live.yml # or co
1. Add the following four secrets to your Shopify Theme Lab repo in `settings``secrets`:

```sh
SHOPIFY_PASSWORD # your-password
SHOPIFY_API_PASSWORD # your-api-password
SHOPIFY_STORE_URL # your-store.myshopify.com
SHOPIFY_ENV # dev or live
SHOPIFY_THEME_ID # theme-id (without quotation marks) - find the id either in shopify.[env].config.yml or with shopify:themes task
Expand Down Expand Up @@ -268,7 +268,7 @@ jobs:
# 3. deploys the shopify/ directory to the remote store
- name: Deploy to Shopify store
run: |
npx themelab shopify:init -p ${{ secrets.SHOPIFY_PASSWORD }} -s ${{ secrets.SHOPIFY_STORE_URL }} -e ${{ secrets.SHOPIFY_ENV }} -i ${{ secrets.SHOPIFY_THEME_ID }}
npx themelab shopify:init -p ${{ secrets.SHOPIFY_API_PASSWORD }} -s ${{ secrets.SHOPIFY_STORE_URL }} -e ${{ secrets.SHOPIFY_ENV }} -i ${{ secrets.SHOPIFY_THEME_ID }}
npm run settings:${{ secrets.SHOPIFY_ENV }}
npm run deploy:${{ secrets.SHOPIFY_ENV }} -- --allow-live
```
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "shopify-theme-lab",
"description": "Customizable modular development environment for blazing-fast Shopify theme creation",
"author": "Sergej Samsonenko <[email protected]>",
"version": "3.1.0",
"version": "3.1.1",
"license": "MIT",
"config": {
"reloader": {
Expand Down

0 comments on commit d4df723

Please sign in to comment.