Skip to content

Commit

Permalink
release workflow fixes (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyscarpenter authored Feb 24, 2023
1 parent 4957c78 commit 2606bea
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name: Release Workflow
on:
push:
tags:
- 'v.*'
- 'v*'

workflow_dispatch:
inputs:
Expand Down Expand Up @@ -98,6 +98,25 @@ jobs:
run: |
./mvnw -B -ntp versions:set -DremoveSnapshot versions:commit
#
# build and push OSS image to Docker hub
#

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Build and push (Docker Hub)
if: ${{ !inputs.skipPublish }}
run: |
./mvnw -B -ntp clean package -DskipTests -Dquarkus.container-image.build=true -Dquarkus.container-image.push=true -Dquarkus.container-image.tag=${{needs.resolve-tag.outputs.release-tag}} ${{ matrix.profile }}
#
# build and push Astra image to Amazon ECR
#

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1-node16
with:
Expand Down
Binary file added src/main/resources/META-INF/branding/favicon.ico
Binary file not shown.

0 comments on commit 2606bea

Please sign in to comment.