-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (35 loc) · 1.04 KB
/
release.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
name: Build for release
on:
release:
types: [ published ]
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
cache: gradle
- name: Set permissions
run: chmod +x gradlew
- name: Temporary workaround
run: ./gradlew --no-daemon Common:build
env:
GITHUB_VERSION: ${{ github.event.release.tag_name }}
- name: Build artifacts
run: ./gradlew --no-daemon Mod:packJar
env:
GITHUB_VERSION: ${{ github.event.release.tag_name }}
- name: Upload artifact to release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./Mod/build/libs/ModLib.jar
asset_name: ModLib.jar
asset_content_type: application/zip