Disable publishing to GitHub Packages for now

This commit is contained in:
Lukas Rieger (Blue) 2022-08-15 00:18:02 +02:00
parent cc3e22bf78
commit d351b1f9f4
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
2 changed files with 3 additions and 25 deletions

View File

@ -1,24 +0,0 @@
name: Publish
on:
release:
types: [ published ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0 # needed for versioning
- name: Set up Java 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Gradle
env:
GITHUB_USERNAME: ${{ secrets.github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew clean build test publish

View File

@ -3,7 +3,7 @@ import java.io.IOException
plugins {
java
`java-library`
`maven-publish`
//`maven-publish`
id("com.diffplug.spotless") version "6.1.2"
}
@ -95,6 +95,7 @@ tasks.processResources {
}
}
/*
publishing {
repositories {
maven {
@ -114,3 +115,4 @@ publishing {
}
}
}
*/