-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (51 loc) · 1.35 KB
/
create-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
41
42
43
44
45
46
47
48
49
50
51
52
name: create-release
on:
workflow_dispatch:
inputs:
old-version:
type: string
description: Version before the current version.
jobs:
build-jar:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
with:
fetch-tags: true
fetch-depth: 0
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
- name: Build package
run: ./gradlew build
env:
GITHUB_TOKEN: ${{ secrets.JAVA_TOKEN }}
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: kia-jar
path: build/libs/*all.jar
release:
needs: [ build-jar ]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v4
with:
name: kia-jar
path: plugin/
- uses: ncipollo/release-action@v1
with:
artifacts: "plugin/*.jar"
- name: Trigger post release workflow
env:
GH_TOKEN: ${{ secrets.JAVA_TOKEN }}
run: gh workflow run post-release.yml --ref ${{ github.ref }}