Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/create_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@ jobs:
- name: Checkout source
uses: actions/checkout@v3

- name: Check .version
run: if [ $(grep ${{ github.event.inputs.version }} .version -c) != 1 ]; then exit 1; fi

- name: Check Changelog
run: if [ $(grep ${{ github.event.inputs.version }} CHANGELOG.md -c) != 1 ]; then exit 1; fi
- name: Check version
run: |
for FILE in .version CHANGELOG.MD; do
if [ $(grep ${{ github.event.inputs.version }} "$FILE" -c) != 1 ]; then
echo "Version ${{ github.event.inputs.version }} not found in $FILE"
exit 1
fi
done

- run: git archive --output=tpay-magento2-basic.zip HEAD

Expand Down
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.3
2.5.4
4 changes: 3 additions & 1 deletion Api/TpayConfigInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

namespace Tpay\Magento2\Api;

/** @api */
/**
* @api
*/
interface TpayConfigInterface
{
public function isTpayActive(): bool;
Expand Down
4 changes: 3 additions & 1 deletion Api/TpayInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

namespace Tpay\Magento2\Api;

/** @api */
/**
* @api
*/
interface TpayInterface
{
public const CODE = 'Tpay_Magento2';
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 2.5.4

### Changed

- CI/CD version check

## 2.5.3

### Added
Expand Down