Skip to content

Commit

Permalink
Add workflow to publish on the marketplace (with debug)
Browse files Browse the repository at this point in the history
  • Loading branch information
Quetzacoalt91 committed Feb 24, 2021
1 parent 4336467 commit 7c0d139
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/mktp-metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"id_product" : "46347",
"technical_name" : "ps_checkout",
"display_name" : "PrestaShop Checkout",
"channel" : "stable",
"type_upgrade" : "updatemin",
"product_type" : "module",
"compatible_from" : "1.6.1.0"
}
31 changes: 31 additions & 0 deletions .github/workflows/publish-to-marketplace.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Publish to the Marketplace

on:
release:
types: [released]

jobs:
publish_to_marketplace:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]

- name: Download release asset
uses: dsaltares/[email protected]
with:
repo: ${{ github.event.repository.full_name }}
version: ${{ github.event.release.id }}
file: ${{ github.event.repository.name }}.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Prepare publishing tool
run: |
composer global require prestashop/publish-on-marketplace
- name: Release zip
run: |
~/.composer/vendor/bin/publish-on-marketplace --archive=$PWD/${{ github.event.repository.name }}.zip --metadata-json=$PWD/.github/mktp-metadata.json --changelog="${{ github.event.release.body }}" --debug
env:
MARKETPLACE_API_KEY: ${{ secrets.MARKETPLACE_API_KEY }}

0 comments on commit 7c0d139

Please sign in to comment.