From 387b8265cfefa3c68a38abea2cdf605d36a0bd21 Mon Sep 17 00:00:00 2001 From: Puneet Behl Date: Thu, 9 Dec 2021 02:50:39 +0530 Subject: [PATCH] Delete central-sync.yml --- .github/workflows/central-sync.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/central-sync.yml diff --git a/.github/workflows/central-sync.yml b/.github/workflows/central-sync.yml deleted file mode 100644 index a479a1bc..00000000 --- a/.github/workflows/central-sync.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Maven Central Sync -on: - workflow_dispatch: - inputs: - release_version: - description: 'Release version (eg: 1.2.3)' - required: true -jobs: - central-sync: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v2 - with: - ref: v${{ github.event.inputs.release_version }} - - uses: gradle/wrapper-validation-action@v1 - - name: Set up JDK - uses: actions/setup-java@v2 - with: - java-version: 1.8 - - name: Syncs with Maven Central/Sonatype - env: - BINTRAY_USER: ${{ secrets.BINTRAY_USER }} - BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }} - run: | - ./gradlew synchronizeWithMavenCentral --no-daemon