Skip to content

Commit f8b9631

Browse files
committed
[#3] Bumps version and fixes release workflow
Signed-off-by: Gregor Anders <[email protected]>
1 parent 7c010e0 commit f8b9631

File tree

2 files changed

+3
-17
lines changed

2 files changed

+3
-17
lines changed

.github/workflows/feature.yml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [ ubuntu-latest ]
18-
java: [ '8', '17' ]
18+
java: [ '8' ]
1919
fail-fast: false
2020
name: ${{ matrix.os }} JDK ${{ matrix.java }}
2121
steps:
@@ -33,12 +33,6 @@ jobs:
3333
run: echo $JAVA_HOME
3434
- name: Echo JAVA version
3535
run: java -version
36-
- name: Cache SonarCloud packages
37-
uses: actions/[email protected]
38-
with:
39-
path: ~/.sonar/cache
40-
key: ${{ runner.os }}-sonar
41-
restore-keys: ${{ runner.os }}-sonar
4236
- name: Cache Gradle packages
4337
uses: actions/[email protected]
4438
with:
@@ -63,14 +57,6 @@ jobs:
6357
uses: gradle/gradle-build-action@v2
6458
with:
6559
arguments: --info --stacktrace build
66-
- name: Sonarcube analyze
67-
if: matrix.java == '17'
68-
uses: gradle/gradle-build-action@v2
69-
env:
70-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
71-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
72-
with:
73-
arguments: --info --stacktrace sonarqube
7460
- name: Upload reports as an artifact
7561
if: always()
7662
uses: actions/upload-artifact@v2
@@ -79,7 +65,7 @@ jobs:
7965
path: build/reports
8066
retention-days: 2
8167
- name: Upload test results as an artifact
82-
if: ${{ always() && matrix.java == '17' }}
68+
if: always()
8369
uses: actions/upload-artifact@v2
8470
with:
8571
name: junit-results

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ group=io.github.gregoranders
3030

3131
description=Following the principle of convention over configuration this Gradle plugin provides default configurations for various plugins of a Gradle JVM project so that you do not need to copy boilerplate code throughout your projects.
3232

33-
version=0.0.1
33+
version=0.0.2
3434

3535
url=https://github.com/gregoranders/gradle-project-configuration
3636
ghpUrl=https://maven.pkg.github.com/gregoranders/gradle-project-configuration

0 commit comments

Comments
 (0)