From b8d1bd2c0f1cd15a6335c0df8f6571532ce410ea Mon Sep 17 00:00:00 2001 From: Jaewoong Eum Date: Wed, 19 Jun 2024 20:32:18 +0900 Subject: [PATCH] Delete .github/workflows/publish-snapshot.yml --- .github/workflows/publish-snapshot.yml | 38 -------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/publish-snapshot.yml diff --git a/.github/workflows/publish-snapshot.yml b/.github/workflows/publish-snapshot.yml deleted file mode 100644 index 7a8f3b46..00000000 --- a/.github/workflows/publish-snapshot.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Publish Snapshot builds - -on: - push: - branches: - - main - workflow_dispatch: - -jobs: - publish: - name: Snapshot build and publish - runs-on: macos-latest - steps: - - name: Check out code - uses: actions/checkout@v3.1.0 - - - name: Set up JDK 17 - uses: actions/setup-java@v3.5.1 - with: - distribution: 'zulu' - java-version: 17 - - - name: Grant Permission to Execute Gradle - run: chmod +x gradlew - - - name: Release build - run: ./gradlew assemble --scan -x :benchmark:pixel6api31Setup -x :benchmark:pixel6api31NonMinifiedReleaseAndroidTest -x :benchmark:collectNonMinifiedReleaseBaselineProfile - - - name: Publish to MavenCentral - run: | - ./gradlew publishAllPublicationsToMavenCentral --no-daemon --no-parallel - env: - ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.OSSRH_USERNAME }} - ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.OSSRH_PASSWORD }} - ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.SIGNING_KEY_ID }} - ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }} - ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_KEY }} - SNAPSHOT: true