Skip to content

Bump com.google.cloud.tools:jib-maven-plugin from 3.3.1 to 3.4.1 #35

Bump com.google.cloud.tools:jib-maven-plugin from 3.3.1 to 3.4.1

Bump com.google.cloud.tools:jib-maven-plugin from 3.3.1 to 3.4.1 #35

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: LGS CI Feature Branches
on:
push:
branches:
- 'feature/**'
- 'bugfix/**'
- 'hotfix/**'
- 'dependabot/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: maven
- uses: s4u/[email protected]
with:
servers: |
[{
"id": "github-lgs-pdp",
"username": "${{ secrets.GH_PACKAGE_USER }}",
"password": "${{ secrets.GH_PACKAGE_TOKEN }}"
}]
- name: Maven verify
run: mvn -B verify -Dmaven.test.skip
- name: Maven run tests
run: mvn -B test
- name: Maven build package
run: mvn -B package -Dmaven.test.skip