Skip to content

Add files via upload #7

Add files via upload

Add files via upload #7

Workflow file for this run

name: Java CI with Maven and Pre-release
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 22
uses: actions/setup-java@v4
with:
java-version: '22'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn clean package --file pom.xml
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
with:
tag_name: v${{ github.run_number }}
release_name: Pre-release ${{ github.run_number }}
draft: false
prerelease: true
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: artifact
path: target/*.jar