forked from Auxilor/EcoEnchants
-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (63 loc) · 1.93 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
62
63
name: EcoEchantments Build
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v2
- name: cache gradle packages
uses: actions/cache@v2
with:
key: ${{ runner.os }}-build-${{ env.cache-name }}
path: |
~/.gradle/caches
~/.gradle/wrapper
- name: validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: setup jdk 8.0
uses: actions/setup-java@v2
with:
distribution: adopt
java-version: 17
- name: make gradle wrapper executable
run: chmod +x ./gradlew
# 第一次构建
- name: build
id: build_1
run: ./gradlew build
# 第二次构建
- name: build (retry 1)
id: build_2
if: steps.build_1.outcome == 'failure'
run: ./gradlew build
# 第三次构建
- name: build (retry 2)
id: build_3
if: steps.build_2.outcome == 'failure'
run: ./gradlew build
# 第四次构建
- name: build (retry 3)
id: build_4
if: steps.build_3.outcome == 'failure'
run: ./gradlew build
- name: Set outputs
id: short_sha
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Publish Release
uses: softprops/action-gh-release@v1
with:
files: "bin/*.jar"
body: |
Commit ${{ steps.short_sha.outputs.sha_short }}
This release is automatically compiled by GitHub Actions
name: EcoEchants Automation Compile ${{ steps.short_sha.outputs.sha_short }}
draft: false
tag_name: commit-${{ steps.short_sha.outputs.sha_short }}
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_KEY }}
GITHUB_REPOSITORY: LangZongz/EcoEnchants