{"id":13474601,"url":"https://github.com/pgrimaud/action-shopify","last_synced_at":"2025-04-22T23:33:21.647Z","repository":{"id":54690140,"uuid":"177586210","full_name":"pgrimaud/action-shopify","owner":"pgrimaud","description":"Deploy Shopify theme with Theme Kit on GitHub Actions","archived":false,"fork":false,"pushed_at":"2021-06-25T16:19:14.000Z","size":27,"stargazers_count":132,"open_issues_count":0,"forks_count":43,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-18T00:06:19.206Z","etag":null,"topics":["actions","github-action","github-actions","hacktoberfest","shopify","shopify-theme","shopify-themes"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pgrimaud.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"pgrimaud","custom":"https://www.paypal.me/grimaudpierre"}},"created_at":"2019-03-25T12:54:45.000Z","updated_at":"2025-01-12T20:28:42.000Z","dependencies_parsed_at":"2023-01-11T17:23:18.221Z","dependency_job_id":null,"html_url":"https://github.com/pgrimaud/action-shopify","commit_stats":{"total_commits":38,"total_committers":5,"mean_commits":7.6,"dds":0.1578947368421053,"last_synced_commit":"c74acb58983ed007048e0760b3f5180fc54ffd8a"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgrimaud%2Faction-shopify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgrimaud%2Faction-shopify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgrimaud%2Faction-shopify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgrimaud%2Faction-shopify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pgrimaud","download_url":"https://codeload.github.com/pgrimaud/action-shopify/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250340815,"owners_count":21414648,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","github-action","github-actions","hacktoberfest","shopify","shopify-theme","shopify-themes"],"created_at":"2024-07-31T16:01:13.489Z","updated_at":"2025-04-22T23:33:21.343Z","avatar_url":"https://github.com/pgrimaud.png","language":"Dockerfile","funding_links":["https://github.com/sponsors/pgrimaud","https://www.paypal.me/grimaudpierre"],"categories":["Dockerfile","Community Resources"],"sub_categories":["Deployment"],"readme":"# Deploy Shopify theme for GitHub Actions\n\n### NEW since 2.2 : this action is now based on a pre-built image\n```\nUsing a pre-built image saved 115% of time on this action set-up\n```\n\n⚠️ Docker image is located here : https://github.com/pgrimaud/docker-images/tree/master/themekit\n\n## Description\n\nThis GitHub action is part of a list of my Actions : https://github.com/pgrimaud/actions.\n\n**A GitHub Actions+Shopify workflow was proposed here : https://github.com/freyum/shopify-workflow-poc**\n\n## Usage\n\nTo use the action simply add the following lines to your workflow .yml file.\n\n```yaml\n...\n  steps:\n      - uses: actions/checkout@v2\n      - name: Shopify\n        uses: pgrimaud/action-shopify@master\n        env:\n          SHOPIFY_PASSWORD: ${{ secrets.SHOPIFY_PASSWORD }}\n          SHOPIFY_STORE_URL: ${{ secrets.SHOPIFY_STORE_URL }}\n          SHOPIFY_THEME_ID: ${{ secrets.SHOPIFY_THEME_ID }}\n          THEME_PATH: ${{ secrets.THEME_PATH }}\n```\n\nYou can see a repository with this action here : https://github.com/pgrimaud/shopify-debut\n\n### Required Secrets\n\nFirst you have to generate a private app to get an API KEY on Shopify. [Get API Access](https://shopify.github.io/themekit/#get-api-access).\n\nThen you'll need to provide some secrets to use the action.\n\n* **SHOPIFY_PASSWORD**: Your password from your private app previously created.\n* **SHOPIFY_STORE_URL**: Your store url. (e.g. `demo.myshopify.com`).\n* **SHOPIFY_THEME_ID**: Your theme id on your Shopify Store.\n* **THEME_PATH**: Path of your theme on your GitHub repository. If your theme is at the root of your repository, just use `./`.\n\n### Optional Arguments\n\nThe optional argument you can add to improve theme deployment. Optional args are available on [Theme Kit help](https://shopify.github.io/themekit/configuration/#flags).\n\n#### Examples\n\n```yaml\n...\n  steps:\n      - uses: actions/checkout@v2\n      - name: Shopify\n        uses: pgrimaud/action-shopify@master\n        env:\n          SHOPIFY_PASSWORD: ${{ secrets.SHOPIFY_PASSWORD }}\n          SHOPIFY_STORE_URL: ${{ secrets.SHOPIFY_STORE_URL }}\n          SHOPIFY_THEME_ID: ${{ secrets.SHOPIFY_THEME_ID }}\n          THEME_PATH: ${{ secrets.THEME_PATH }}\n        with:\n          args: --ignored-file=sections/*\n```\n\nYour can also combine multiple arguments : \n\n```yaml\n...\n  steps:\n      - uses: actions/checkout@v2\n      - name: Shopify\n        uses: pgrimaud/action-shopify@master\n        env:\n          SHOPIFY_PASSWORD: ${{ secrets.SHOPIFY_PASSWORD }}\n          SHOPIFY_STORE_URL: ${{ secrets.SHOPIFY_STORE_URL }}\n          SHOPIFY_THEME_ID: ${{ secrets.SHOPIFY_THEME_ID }}\n          THEME_PATH: ${{ secrets.THEME_PATH }}\n        with:\n          args: --ignored-file=sections/* --timeout=30\n```\n\n## License\n\nThe Dockerfile and associated scripts and documentation in this project are released under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpgrimaud%2Faction-shopify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpgrimaud%2Faction-shopify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpgrimaud%2Faction-shopify/lists"}