-
Notifications
You must be signed in to change notification settings - Fork 2
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 #3 from spyrkob/release_prep
release prep
- Loading branch information
Showing
3 changed files
with
14 additions
and
3 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
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 |
---|---|---|
|
@@ -28,9 +28,14 @@ jobs: | |
git config --global user.name "Component Checker CI" | ||
git config --global user.email "[email protected]" | ||
git checkout -b release | ||
mvn -B release:prepare -Pjboss-release -DreleaseVersion=${{steps.metadata.outputs.current-version}} -DdevelopmentVersion=${{steps.metadata.outputs.next-version}} | ||
mvn -B release:prepare -DreleaseVersion=${{steps.metadata.outputs.current-version}} -DdevelopmentVersion=${{steps.metadata.outputs.next-version}} | ||
git checkout ${{github.base_ref}} | ||
git rebase release | ||
#mvn -B release:perform -Pjboss-release | ||
git push | ||
git push --tags | ||
- name: Create GH release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
files: target/component-mapper-${{steps.metadata.outputs.current-version}}-shaded.jar | ||
tag_name: ${{steps.metadata.outputs.current-version}} |
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 |
---|---|---|
|
@@ -11,6 +11,12 @@ | |
<name>component-mapper</name> | ||
<!-- FIXME change it to the project's website --> | ||
<url>http://www.example.com</url> | ||
<scm> | ||
<connection>scm:git:[email protected]:spyrkob/manifest-component-checker</connection> | ||
<developerConnection>scm:git:[email protected]:spyrkob/manifest-component-checker.git</developerConnection> | ||
<url>https://github.com/spyrkob/manifest-component-checker</url> | ||
<tag>main</tag> | ||
</scm> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
|