Skip to content

chore(deps): bump quarkus.platform.version from 3.4.0.CR1 to 3.4.1 #3

chore(deps): bump quarkus.platform.version from 3.4.0.CR1 to 3.4.1

chore(deps): bump quarkus.platform.version from 3.4.0.CR1 to 3.4.1 #3

Workflow file for this run

# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
name: publish-client
on:
workflow_dispatch:
push:
branches: [ main ]
permissions:
contents: read
packages: write
jobs:
deploy-client:
if: github.event.head_commit.message == 'chore(client):: version release'

Check failure on line 17 in .github/workflows/publish-client.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish-client.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
runs-on: ubuntu-latest
env:
MVN: mvn --show-version --batch-mode
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Publish to GitHub Packages Apache Maven
run: $MVN -pl interweb-client deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}