Skip to content

chore: update lockfile #3189

chore: update lockfile

chore: update lockfile #3189

name: Publish action artifact to GitHub Maven package
on:
workflow_dispatch:
push:
branches:
- main
permissions:
contents: read
jobs:
build-and-push-action:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- name: Set up JDK 11
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4
with:
java-version: 17
distribution: temurin
cache: maven
- name: Build and publish action to Maven repository
shell: bash
run: |
cd github_action && mvn -B clean deploy -Dquarkus.package.type=uber-jar --update-snapshots -Dquarkus.package.add-runner-suffix=false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}