Skip to content

Commented out GitHub Actions workflows for CI/CD and project automation #1

Commented out GitHub Actions workflows for CI/CD and project automation

Commented out GitHub Actions workflows for CI/CD and project automation #1

Workflow file for this run

#name: Publish
#on:
# release:
# types: [released, prereleased]
#jobs:
# publish:
# name: Release build and publish
# runs-on: macOS-latest
# steps:
# - name: Check out code
# uses: actions/checkout@v4
# - name: Set up JDK 21
# uses: actions/setup-java@v4
# with:
# distribution: 'zulu'
# java-version: 21
# - name: Publish to MavenCentral
# run: ./gradlew publishToMavenCentral --no-configuration-cache
# env:
# ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
# ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
# ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.SIGNING_KEY_ID }}
# ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }}
# ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.GPG_KEY_CONTENTS }}
#