generated from Anuken/MindustryJavaModTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (42 loc) · 1.33 KB
/
commitTest.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
name: Commit Testing
on: [push]
jobs:
buildJar:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up PATH
run: |
echo "${ANDROID_HOME}/build-tools/34.0.0" >> $GITHUB_PATH
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Build mod jar
run: ./gradlew deploy
- name: Upload built jar file
uses: actions/upload-artifact@v2
with:
name: ${{ github.event.repository.name }}
path: build/libs/${{ github.event.repository.name }}.jar
- name: Make a tag name
if: github.ref == 'refs/heads/master'
run: |
echo "::set-output name=tag::$(jq '.version' mod.json -r)"
id: tag_make
- name: Create blank release
if: github.ref == 'refs/heads/master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run:
gh release create -t "FOS OST" "${{ steps.tag_make.outputs.tag }}"
# - name: Check mod version
# if: github.ref == 'refs/heads/master'
# run: |
# echo "${{ steps.tag_make.outputs.tag }}"
- name: Add jar into release
uses: softprops/action-gh-release@v1
if: github.ref == 'refs/heads/master'
with:
tag_name: ${{ steps.tag_make.outputs.tag }}
files: build/libs/${{ github.event.repository.name }}.jar