Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
felixklauke committed Sep 5, 2020
1 parent deafa4e commit dbb5ee3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/gradle-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 14
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: gradle build
run: ./gradlew build
- name: Publish to GitHub Packages
run: gradle publish
run: ./gradlew publish
env:
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ plugins {

subprojects {
group "de.marmeladenoma"
version "0.2.0"
version "0.3.0"

apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'maven-publish'

sourceCompatibility = 14
Expand All @@ -26,7 +27,7 @@ subprojects {
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/marmeladenoma")
url = uri("https://maven.pkg.github.com/marmeladenoma/vilicus")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
Expand Down

0 comments on commit dbb5ee3

Please sign in to comment.