Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Attila Mészáros <csviri@gmail.com>
  • Loading branch information
csviri committed Apr 4, 2024
1 parent 530ad55 commit da31919
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on:
release:
types: [ released ]

permissions:
packages: write

jobs:
release:
runs-on: ubuntu-latest
Expand All @@ -11,12 +14,13 @@ jobs:
- name: Set up Java and Maven
uses: actions/setup-java@v4
with:
distribution: zulu
distribution: temurin
java-version: 21
cache: 'maven'
- name: Build
run:
./mvnw clean install -Dquarkus.container-image.build=true -Dquarkus.kubernetes.namespace=default -Dquarkus.container-image.push=true
# - assets-upload:
# run: |
#
env:
QUARKUS_CONTAINER_IMAGE_USERNAME: ${{ github.actor }}
QUARKUS_CONTAINER_IMAGE_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
run: |
# skip tests remove?
./mvnw clean install -DskipTests -Dquarkus.container-image.build=true -Dquarkus.kubernetes.namespace=default -Dquarkus.container-image.push=true

0 comments on commit da31919

Please sign in to comment.