diff --git a/.github/workflows/presta.yml b/.github/workflows/presta.yml index 7c4bfbf..ca46fea 100644 --- a/.github/workflows/presta.yml +++ b/.github/workflows/presta.yml @@ -172,6 +172,17 @@ jobs: body: ${{ env.LAST_COMMIT }} draft: false prerelease: false + - name: Upload Release Asset + id: upload-release-asset + if: env.LAST_TAG != env.RELEASE_TAG + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ${{ env.ARCHIVE_PATH }} + asset_name: ${{ env.ARCHIVE_NAME }} + asset_content_type: application/zip - name: Deploy run: make build_archive - name: Cleanup diff --git a/CHANGELOG.md b/CHANGELOG.md index 012491c..d52c7b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## v3.2.4 +* Доработана выгрузка Releases архивов в Git Actions + ## v3.2.3 * Улучшена работа select в настройках модуля * Исправлена ошибка при работе с настройкам модуля для версии 1.7.7 diff --git a/VERSION b/VERSION index b347b11..351227f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.2.3 +3.2.4 diff --git a/retailcrm/retailcrm.php b/retailcrm/retailcrm.php index 5bce5c7..855cca1 100644 --- a/retailcrm/retailcrm.php +++ b/retailcrm/retailcrm.php @@ -117,7 +117,7 @@ class RetailCRM extends Module { $this->name = 'retailcrm'; $this->tab = 'export'; - $this->version = '3.2.3'; + $this->version = '3.2.4'; $this->author = 'DIGITAL RETAIL TECHNOLOGIES SL'; $this->displayName = $this->l('retailCRM'); $this->description = $this->l('Integration module for retailCRM');