Skip to content

Commit 038499d

Browse files
committed
improve: release improvements
Signed-off-by: csviri <[email protected]>
1 parent 90783e3 commit 038499d

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,13 @@ jobs:
2727
./mvnw ${MAVEN_ARGS} -q build-helper:parse-version versions:set -DnewVersion=\${parsedVersion.majorVersion}.\${parsedVersion.minorVersion}.\${parsedVersion.nextIncrementalVersion}-SNAPSHOT versions:commit
2828
git config --local user.email "[email protected]"
2929
git config --local user.name "GitHub Action"
30-
git commit -m "Set new SNAPSHOT version into pom files." -a
30+
git commit -m "Set new SNAPSHOT version into pom file(s)." -a
31+
- name: Upload Assets
32+
uses: AButler/[email protected]
33+
with:
34+
files: "target/kubernetes/*"
35+
repo-token: ${{ secrets.GITHUB_TOKEN }}
36+
release-tag: ${{ github.event.release.tag_name }}
3137
- name: Push changes
3238
uses: ad-m/github-push-action@master
3339
with:

src/main/resources/application.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ quarkus.kubernetes.image-pull-policy=if-not-present
66
# Uber Jar is required because of this issue: https://github.com/quarkusio/quarkus/issues/39833
77
quarkus.package.type=uber-jar
88
quarkus.jib.jvm-additional-arguments=-Dpolyglot.engine.WarnInterpreterOnly=false
9+
# To inherit visibility from the repo
10+
quarkus.container-image.labels."org.opencontainers.image.source"=https://github.com/csviri/resource-glue-operator
11+
quarkus.container-image.labels."org.opencontainers.image.documentation"=https://github.com/csviri/resource-glue-operator?tab=readme-ov-file#documentation

0 commit comments

Comments
 (0)