Skip to content

Commit

Permalink
add BUILD_NUMBER env - fix issue with downloading dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
VISTALL authored Jul 27, 2024
1 parent 42f9573 commit efd48db
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: jdk21

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
BUILD_NUMBER: 999999

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v1
with:
distribution: 'temurin'
java-version: 21
- name: Build with Maven
run: mvn -U -T 1C -Dmaven.javadoc.skip=true -B -V clean package

0 comments on commit efd48db

Please sign in to comment.