Skip to content

Commit

Permalink
improve: release improvements
Browse files Browse the repository at this point in the history
Signed-off-by: csviri <csviri@gmail.com>
  • Loading branch information
csviri committed Apr 4, 2024
1 parent 90783e3 commit 038499d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,13 @@ jobs:
./mvnw ${MAVEN_ARGS} -q build-helper:parse-version versions:set -DnewVersion=\${parsedVersion.majorVersion}.\${parsedVersion.minorVersion}.\${parsedVersion.nextIncrementalVersion}-SNAPSHOT versions:commit
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -m "Set new SNAPSHOT version into pom files." -a
git commit -m "Set new SNAPSHOT version into pom file(s)." -a
- name: Upload Assets
uses: AButler/upload-release-assets@v3.0
with:
files: "target/kubernetes/*"
repo-token: ${{ secrets.GITHUB_TOKEN }}
release-tag: ${{ github.event.release.tag_name }}
- name: Push changes
uses: ad-m/github-push-action@master
with:
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ quarkus.kubernetes.image-pull-policy=if-not-present
# Uber Jar is required because of this issue: https://github.com/quarkusio/quarkus/issues/39833
quarkus.package.type=uber-jar
quarkus.jib.jvm-additional-arguments=-Dpolyglot.engine.WarnInterpreterOnly=false
# To inherit visibility from the repo
quarkus.container-image.labels."org.opencontainers.image.source"=https://github.com/csviri/resource-glue-operator
quarkus.container-image.labels."org.opencontainers.image.documentation"=https://github.com/csviri/resource-glue-operator?tab=readme-ov-file#documentation

0 comments on commit 038499d

Please sign in to comment.