-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (47 loc) · 1.54 KB
/
main.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
45
46
47
48
49
50
51
52
53
54
55
56
name: Publish compiled jar to GitHub releases
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin
- name: Build jar
run: mvn package
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: MatchBot-1.0.0-SNAPSHOT.jar
path: target/MatchBot-1.0.0-SNAPSHOT.jar
- name: Move generated jar file
run: mv target/MatchBot-1.0.0-SNAPSHOT.jar MatchBot-1.0.0-SNAPSHOT.jar
- name: Create Release
id: create_release
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: MatchBot-${{ github.sha }}
release_name: Release MatchBot-${{ github.sha }}
draft: false
prerelease: false
- name: Upload Release Asset
if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: MatchBot-${{ github.sha }}
release_name: Release MatchBot-${{ github.sha }}
draft: false
prerelease: false
files: ./MatchBot-1.0.0-SNAPSHOT.jar
make_latest: true