-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (37 loc) · 900 Bytes
/
prerelease.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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