Skip to content

Commit 8672f3d

Browse files
author
Artem Eroshenko
authored
workflow refactoring (via #115)
1 parent 2c114aa commit 8672f3d

5 files changed

Lines changed: 27 additions & 47 deletions

File tree

.github/release-drafter.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# release.yml
2+
3+
changelog:
4+
categories:
5+
- title: '🚀 New Features'
6+
labels:
7+
- 'type:new feature'
8+
- title: '🔬 Improvements'
9+
labels:
10+
- 'type:improvement'
11+
- title: '🐞 Bug Fixes'
12+
labels:
13+
- 'type:bug'
14+
- title: '⬆️ Dependency Updates'
15+
labels:
16+
- 'type:dependencies'
17+
- title: '👻 Internal changes'
18+
labels:
19+
- 'type:internal'

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v1
16-
- name: Set up JDK 1.8
17-
uses: actions/setup-java@v1
16+
- uses: actions/setup-java@v3
1817
with:
19-
java-version: 1.8
18+
distribution: 'zulu'
19+
java-version: '8'
20+
cache: 'gradle'
2021
- name: Build
2122
run: ./gradlew installTeamcity2017 build

.github/workflows/release-draft.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/release-publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v1
12-
- name: Set up JDK 1.8
13-
uses: actions/setup-java@v1
12+
- uses: actions/setup-java@v3
1413
with:
15-
java-version: 1.8
14+
distribution: 'zulu'
15+
java-version: '8'
16+
cache: 'gradle'
1617
- name: "Gradle Build"
1718
run: ./gradlew installTeamcity2017 build -Pversion=${GITHUB_REF:10}
1819
- name: "Gradle Publish to Jetbrains"

0 commit comments

Comments
 (0)