forked from sing1ee/elasticsearch-jieba-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (53 loc) · 1.76 KB
/
release.yaml
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
64
65
name: Create release and upload binaries
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]*"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
name: Build release binaries
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 11
- name: Update version
run: |
tag=${GITHUB_REF#refs/tags/}
regex="v([0-9]+\.[0-9]+\.[0-9]+).*"
if [[ $tag =~ $regex ]]; then
extracted_version="${BASH_REMATCH[1]}"
echo "Extracted version: $extracted_version"
else
echo "Extracted version failed"
exit 1
fi
sed -i "s/version=.*/version=${tag}/" src/main/resources/plugin-descriptor.properties
sed -i "s/elasticsearch.version=.*/elasticsearch.version=${extracted_version}/" src/main/resources/plugin-descriptor.properties
sed -i "s/version =.*/version=${tag}/" build.gradle
sed -i "s/org.elasticsearch:elasticsearch:.*/org.elasticsearch:elasticsearch:${extracted_version}'/" build.gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
gradle-version: 7.6
- name: Build with Gradle
run: gradle clean pz
# - name: Upload artifacts
# uses: actions/upload-artifact@v3
# with:
# name: release-artifacts
# path: build/distributions
- name: Add Artifacts to Release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: build/distributions/*.zip