diff --git a/.github/workflows/publish-libraries.yml b/.github/workflows/publish-libraries.yml index e8b41a7ca3..29e5e42b8e 100644 --- a/.github/workflows/publish-libraries.yml +++ b/.github/workflows/publish-libraries.yml @@ -6,17 +6,6 @@ name: Publish libraries # or API. on: workflow_dispatch: - # Inputs the workflow accepts. - inputs: - name: - # Friendly description to be shown in the UI instead of 'name' - description: 'Person to greet' - # Default value if no value is explicitly provided - default: 'World' - # Input has to be provided for the workflow to run - required: true - # The data type of the input - type: string jobs: publish: @@ -38,7 +27,7 @@ jobs: # Create publish to maven - name: Publish to maven - run: ./gradlew publishAllPublicationsToSonatypeRepository + run: ./gradlew publish env: OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} \ No newline at end of file