Skip to content

Commit

Permalink
V Added GitActions Generate Release (#14)
Browse files Browse the repository at this point in the history
- Added Gitactions to generate release automatic
  • Loading branch information
LauroSilveira committed Oct 25, 2023
1 parent d66a339 commit b0086c1
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
29 changes: 29 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

name: Create Release

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Create Release
id: create_release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
- First Change
- Second Change
draft: false
prerelease: false
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,4 @@ public Flux<UserVO> getUsers() {
log.info("[UserInfoController] getUsers");
return this.userService.getUsers();
}

}

0 comments on commit b0086c1

Please sign in to comment.