Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Dev #23

Merged
merged 3 commits into from
Aug 17, 2024
Merged

Dev #23

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
7 changes: 5 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,17 @@ jobs:
- name: Bump version and generate changelog
run: yarn release

- name: Extract version from package.json
run: echo "VERSION=$(cat package.json | jq -r .version)" >> $GITHUB_ENV

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ github.ref }}
release_name: Release ${{ github.ref }}
tag_name: v${{ env.VERSION }}
release_name: Release v${{ env.VERSION }}
body_path: CHANGELOG.md
draft: false
prerelease: false
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.1.2](https://github.com/montasim/node-express-boilerplate/compare/v1.1.1...v1.1.2) (2024-08-17)

### Bug Fixes

- bump version and generate changelog ([4ca21ab](https://github.com/montasim/node-express-boilerplate/commit/4ca21ab6f4c0ee652c755f83d9ba32492a3265f0))
- bump version and generate changelog ([3059197](https://github.com/montasim/node-express-boilerplate/commit/30591971b1b5dd032dfa480a31d088c7c750d484))

### [1.1.1](https://github.com/montasim/node-express-boilerplate/compare/v1.1.0...v1.1.1) (2024-08-17)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-express-boilerplate",
"version": "1.1.1",
"version": "1.1.2",
"description": "",
"private": true,
"main": "server.js",
Expand Down
Loading