Skip to content

Commit dbb5ee3

Browse files
committed
Bump
1 parent deafa4e commit dbb5ee3

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/gradle-publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ jobs:
1313
uses: actions/setup-java@v1
1414
with:
1515
java-version: 14
16+
- name: Grant execute permission for gradlew
17+
run: chmod +x gradlew
1618
- name: Build with Gradle
17-
run: gradle build
19+
run: ./gradlew build
1820
- name: Publish to GitHub Packages
19-
run: gradle publish
21+
run: ./gradlew publish
2022
env:
2123
GITHUB_ACTOR: ${{ github.actor }}
2224
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ plugins {
44

55
subprojects {
66
group "de.marmeladenoma"
7-
version "0.2.0"
7+
version "0.3.0"
88

99
apply plugin: 'java'
10+
apply plugin: 'maven'
1011
apply plugin: 'maven-publish'
1112

1213
sourceCompatibility = 14
@@ -26,7 +27,7 @@ subprojects {
2627
repositories {
2728
maven {
2829
name = "GitHubPackages"
29-
url = uri("https://maven.pkg.github.com/marmeladenoma")
30+
url = uri("https://maven.pkg.github.com/marmeladenoma/vilicus")
3031
credentials {
3132
username = System.getenv("GITHUB_ACTOR")
3233
password = System.getenv("GITHUB_TOKEN")

0 commit comments

Comments
 (0)