Skip to content

Missing stage: "DeleteStage.DELETE_TARGET" #247 #177

Missing stage: "DeleteStage.DELETE_TARGET" #247

Missing stage: "DeleteStage.DELETE_TARGET" #247 #177

Workflow file for this run

name: 'build test deploy'
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 17, 21 ]
steps:
- name: Checkout...
uses: actions/checkout@v4
- name: Set up JDK...
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Build and test...
run: mvn clean verify
deploy:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main'}}
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout...
uses: actions/checkout@v4
# this action exports env.POM_VERSION variable
- name: Export Maven coordinates...
uses: bootique-tools/export-maven-coordinates-action@v1
- name: Set up JDK...
uses: actions/setup-java@v4
# skip this for the release versions
if: contains(env.POM_VERSION, '-SNAPSHOT')
with:
java-version: 11
distribution: 'temurin'
cache: 'maven'
- name: Deploy...
run: mvn clean source:jar javadoc:javadoc deploy -DskipTests --settings .github/workflows/maven_settings.xml
# skip this for the release versions
if: contains(env.POM_VERSION, '-SNAPSHOT')
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}