-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from alisaitteke/develop
Develop
- Loading branch information
Showing
3 changed files
with
25 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,8 @@ jobs: | |
# Checkout project repository | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# Setup Node.js environment | ||
- name: Setup Node.js | ||
|
@@ -58,12 +60,22 @@ jobs: | |
RELEASE_TYPE: ${{ github.event.inputs.release-type }} | ||
|
||
# Update changelog unreleased section with new version | ||
- name: Update changelog | ||
uses: superfaceai/release-changelog-action@v1 | ||
# - name: Update changelog | ||
# uses: superfaceai/release-changelog-action@v1 | ||
# with: | ||
# path-to-changelog: CHANGELOG.md | ||
# version: ${{ env.NEW_VERSION }} | ||
# operation: release | ||
- name: Conventional commits check | ||
uses: oknozor/cocogitto-action@v3 | ||
with: | ||
path-to-changelog: CHANGELOG.md | ||
version: ${{ env.NEW_VERSION }} | ||
operation: release | ||
release: true | ||
check-latest-tag-only: true | ||
git-user: 'Ali Sait Teke' | ||
git-user-email: '[email protected]' | ||
|
||
- name: Print version | ||
run: "echo '${{ steps.release.outputs.version }}'" | ||
|
||
# Commit changes | ||
- name: Commit CHANGELOG.md and package.json changes and create tag | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@alisaitteke/seatmap-canvas", | ||
"version": "2.5.9", | ||
"version": "2.5.14", | ||
"tags": "seating, seat, seatmap, seat-selection, seat-booking, booking, ticket, reservation", | ||
"author": "Ali Sait TEKE <[email protected]>", | ||
"homepage": "https://github.com/alisaitteke/seatmap-canvas", | ||
|