https://github.com/linchpin/action-shop-product-updates
Update product or product variation within WooCommerce with the latest "release" information
https://github.com/linchpin/action-shop-product-updates
actions github-actions plugins-wordpress woocommerce wordpress
Last synced: 5 months ago
JSON representation
Update product or product variation within WooCommerce with the latest "release" information
- Host: GitHub
- URL: https://github.com/linchpin/action-shop-product-updates
- Owner: linchpin
- License: mit
- Created: 2019-12-17T03:28:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T05:30:57.000Z (over 2 years ago)
- Last Synced: 2026-01-15T18:41:08.086Z (5 months ago)
- Topics: actions, github-actions, plugins-wordpress, woocommerce, wordpress
- Language: JavaScript
- Homepage: https://linchpin.com
- Size: 425 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Update Product Downloads
This action will update all product variations for a downloadable products within WooCommerce.
This is useful for automated releases of premium plugins that use WooCommerce for downloads.
## Usage
See the below example for usage. Best practice is to store the following data within secrets in your repo settings.
```yaml
- name: Update Shop
uses: linchpin/action-shop-product-updates@master
with:
woo_api_host: ${{ secrets.WOO_API_HOST }}
woo_api_key: ${{ secrets.WOO_API_KEY }}
woo_api_secret: ${{ secrets.WOO_API_SECRET }}
woo_product_id: ${{ secrets.WOO_PRODUCT_ID }}
woo_product_version: ${{ steps.get_version.outputs.VERSION }}
```