-
Notifications
You must be signed in to change notification settings - Fork 7
61 lines (54 loc) · 1.67 KB
/
build.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
57
58
59
60
61
name: Maven Build
on:
push:
branches:
- 'main' # Build the latest develop-SNAPSHOT
paths-ignore:
- 'Readme.md'
- 'LICENSE.md'
- 'checks.md'
- 'sample_config.yaml'
- 'test_submissions/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
pre_job:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@master
with:
concurrent_skipping: 'same_content_newer'
skip_after_successful_duplicate: 'true'
build:
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: joshlong/java-version-export-github-action@v28
id: jve
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ steps.jve.outputs.java_major_version }}
cache: 'maven'
- name: Build with Maven
run: mvn -B clean package --file pom.xml
- uses: actions/upload-artifact@v3
with:
name: autograder-cmd
path: autograder-cmd/target/autograder-cmd.jar
if-no-files-found: error
# Release only when pushing to a tag
- name: Create release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
body: 'Minor Release (mostly for the automatic download of the jar file)'
files: autograder-cmd/target/autograder-cmd.jar