diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96a9987..f8c1abd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,16 +48,7 @@ jobs: publish: if: github.repository == 'dropbox/differ' && github.ref == 'refs/heads/main' && github.event_name != 'pull_request' needs: [build] - strategy: - matrix: - include: - - release-target: publishIosArm64PublicationToMavenCentral - os: macos-latest - - release-target: publishJvmPublicationToMavenCentral - os: ubuntu-latest - - release-target: publishLinuxX64PublicationToMavenCentral - os: ubuntu-latest - runs-on: ${{ matrix.os }} + runs-on: macos-latest steps: - name: Checkout uses: actions/checkout@v4 @@ -75,7 +66,7 @@ jobs: uses: gradle/actions/setup-gradle@v4 - name: Publish release - run: ./gradlew ${{ matrix.release-target }} + run: ./gradlew publish # Publish all artifacts to all configured repositories. Maven Central for this project. if: success() env: ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_USERNAME }}