Skip to content

Commit

Permalink
Release of 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcivit committed Oct 9, 2024
1 parent 3e3cdf5 commit 5647622
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2
- name: Build project
run: ./bin/release.sh ${{ steps.get_version.outputs.VERSION }}
run: ./bin/release.sh ${{ env.VERSION }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.get_version.outputs.VERSION }}
release_name: Release ${{ steps.get_version.outputs.VERSION }}
tag_name: ${{ env.VERSION }}
release_name: Release ${{ env.VERSION }}
draft: true
prerelease: false
- name: Upload Release Asset
Expand All @@ -36,6 +36,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./.dist/Plugin_CS-Cart_${{ steps.get_version.outputs.VERSION }}.zip
asset_name: Plugin_CS-Cart_${{ steps.get_version.outputs.VERSION }}.zip
asset_path: ./.dist/Plugin_CS-Cart_${{ env.VERSION }}.zip
asset_name: Plugin_CS-Cart_${{ env.VERSION }}.zip
asset_content_type: application/zip
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 1.7.0
Release date - Oct 9th, 2024

### Added
+ PLGCSCS-145: Add Pay After Delivery - BNPL_MF. Remove issuers from iDEAL.

***

## 1.6.2
Release date - Mar 17th, 2023

Expand Down

0 comments on commit 5647622

Please sign in to comment.