From 3d38001a4b34132b4046a9307ab07abc7222d8f4 Mon Sep 17 00:00:00 2001 From: JeremyTubongbanua Date: Sun, 27 Oct 2024 02:22:06 -0400 Subject: [PATCH 01/13] ci: workflow dispatch --- .github/workflows/maven-deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml index 30cb241..1330801 100644 --- a/.github/workflows/maven-deploy.yml +++ b/.github/workflows/maven-deploy.yml @@ -4,6 +4,7 @@ name: Maven Deploy `at_client` to Nexus OSSRH on: + workflow_dispatch: push: branches: - trunk From 18f9c216215cdeaa8e5c741372b7dca4dcad66b7 Mon Sep 17 00:00:00 2001 From: JeremyTubongbanua Date: Sun, 27 Oct 2024 02:23:55 -0400 Subject: [PATCH 02/13] ci: --- .github/workflows/maven-deploy.yml | 78 +++++++++++++++--------------- 1 file changed, 38 insertions(+), 40 deletions(-) diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml index 1330801..7977c2f 100644 --- a/.github/workflows/maven-deploy.yml +++ b/.github/workflows/maven-deploy.yml @@ -1,6 +1,3 @@ -# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created -# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path - name: Maven Deploy `at_client` to Nexus OSSRH on: @@ -8,8 +5,8 @@ on: push: branches: - trunk - -permissions: # added using https://github.com/step-security/secure-workflows + +permissions: contents: read jobs: @@ -19,38 +16,39 @@ jobs: working-directory: at_client runs-on: ubuntu-latest steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - name: Set up JDK 8 - uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0 - with: - java-version: '8' - distribution: 'adopt' - server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml - server-username: "MAVEN_USERNAME" # env variable for username in deploy - server-password: "MAVEN_PASSWORD" # env variable for token in deploy - gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} # Value of the GPG private key to import - gpg-passphrase: "GPG_PASSPHRASE" # env variable for GPG private key passphrase - env: - MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} - MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} - GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} - - - name: Print folder - run: ls -al . - - - name: Print m2 settings - continue-on-error: true - run: cat ~/.m2/settings.xml - - - name: Publish to Apache Maven Central - run: | - mvn \ - install \ - deploy \ - --batch-mode \ - --no-transfer-progress \ - -Dgpg.skip=false - env: - MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} - MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} - GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: Import GPG key + run: | + echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import + env: + GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} + + - name: Set up JDK 8 + uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0 + with: + java-version: "8" + distribution: "adopt" + server-id: ossrh + server-username: ${{ secrets.MAVEN_USERNAME }} + server-password: ${{ secrets.MAVEN_PASSWORD }} + + - name: Print folder + run: ls -al . + + - name: Print m2 settings + continue-on-error: true + run: cat ~/.m2/settings.xml + + - name: Publish to Apache Maven Central + run: | + mvn \ + install \ + org.apache.maven.plugins:maven-deploy-plugin:deploy \ + --batch-mode \ + --no-transfer-progress \ + -Dgpg.skip=false -e + env: + MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} + MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} + GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} From 16450df5f3e51811d044e4fc15fd47420289c39d Mon Sep 17 00:00:00 2001 From: JeremyTubongbanua Date: Sun, 27 Oct 2024 02:25:49 -0400 Subject: [PATCH 03/13] ci: --- .github/workflows/maven-deploy.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml index 7977c2f..26cec75 100644 --- a/.github/workflows/maven-deploy.yml +++ b/.github/workflows/maven-deploy.yml @@ -40,14 +40,15 @@ jobs: continue-on-error: true run: cat ~/.m2/settings.xml - - name: Publish to Apache Maven Central + - name: Publish to Apache Maven Central run: | mvn \ install \ org.apache.maven.plugins:maven-deploy-plugin:deploy \ --batch-mode \ --no-transfer-progress \ - -Dgpg.skip=false -e + -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} \ + -Dgpg.skip=false -e env: MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} From 0526c711be47662d3f57eacf3eb929a22a11a4ac Mon Sep 17 00:00:00 2001 From: JeremyTubongbanua Date: Sun, 27 Oct 2024 02:26:47 -0400 Subject: [PATCH 04/13] ci: --- .github/workflows/maven-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml index 26cec75..7139487 100644 --- a/.github/workflows/maven-deploy.yml +++ b/.github/workflows/maven-deploy.yml @@ -40,7 +40,7 @@ jobs: continue-on-error: true run: cat ~/.m2/settings.xml - - name: Publish to Apache Maven Central + - name: Publish to Apache Maven Central run: | mvn \ install \ From 04544a1d6c7fad33adf7b9404b4f4a1457f7351b Mon Sep 17 00:00:00 2001 From: JeremyTubongbanua Date: Sun, 27 Oct 2024 02:28:11 -0400 Subject: [PATCH 05/13] ci: --- .github/workflows/maven-deploy.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml index 7139487..65451a5 100644 --- a/.github/workflows/maven-deploy.yml +++ b/.github/workflows/maven-deploy.yml @@ -20,7 +20,7 @@ jobs: - name: Import GPG key run: | - echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import + echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --yes --pinentry-mode loopback --import env: GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} @@ -33,22 +33,23 @@ jobs: server-username: ${{ secrets.MAVEN_USERNAME }} server-password: ${{ secrets.MAVEN_PASSWORD }} - - name: Print folder + - name: Print folder contents run: ls -al . - - name: Print m2 settings + - name: Print Maven settings continue-on-error: true run: cat ~/.m2/settings.xml - name: Publish to Apache Maven Central run: | - mvn \ + mvn -X \ install \ org.apache.maven.plugins:maven-deploy-plugin:deploy \ --batch-mode \ --no-transfer-progress \ + -Dgpg.executable=gpg \ -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} \ - -Dgpg.skip=false -e + -Dgpg.skip=false -e env: MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} From 0b33cc1742d3023a7c477d75078b6c4f6fe1e0d2 Mon Sep 17 00:00:00 2001 From: JeremyTubongbanua Date: Sun, 27 Oct 2024 02:29:25 -0400 Subject: [PATCH 06/13] ci: --- .github/workflows/maven-deploy.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml index 65451a5..b7767c2 100644 --- a/.github/workflows/maven-deploy.yml +++ b/.github/workflows/maven-deploy.yml @@ -16,11 +16,17 @@ jobs: working-directory: at_client runs-on: ubuntu-latest steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - name: Checkout Code + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: Start gpg-agent + run: | + gpgconf --launch gpg-agent - name: Import GPG key run: | echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --yes --pinentry-mode loopback --import + gpg --list-keys --fingerprint --verbose env: GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} From 66c9d71e571403399ed96a1b72e39221ef894c79 Mon Sep 17 00:00:00 2001 From: JeremyTubongbanua Date: Sun, 27 Oct 2024 02:32:08 -0400 Subject: [PATCH 07/13] ci: --- .github/workflows/maven-deploy.yml | 82 +++++++++++++----------------- 1 file changed, 36 insertions(+), 46 deletions(-) diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml index b7767c2..de5ba5f 100644 --- a/.github/workflows/maven-deploy.yml +++ b/.github/workflows/maven-deploy.yml @@ -1,12 +1,11 @@ name: Maven Deploy `at_client` to Nexus OSSRH on: - workflow_dispatch: push: branches: - trunk -permissions: +permissions: # added using https://github.com/step-security/secure-workflows contents: read jobs: @@ -16,47 +15,38 @@ jobs: working-directory: at_client runs-on: ubuntu-latest steps: - - name: Checkout Code - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - - name: Start gpg-agent - run: | - gpgconf --launch gpg-agent - - - name: Import GPG key - run: | - echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --yes --pinentry-mode loopback --import - gpg --list-keys --fingerprint --verbose - env: - GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} - - - name: Set up JDK 8 - uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0 - with: - java-version: "8" - distribution: "adopt" - server-id: ossrh - server-username: ${{ secrets.MAVEN_USERNAME }} - server-password: ${{ secrets.MAVEN_PASSWORD }} - - - name: Print folder contents - run: ls -al . - - - name: Print Maven settings - continue-on-error: true - run: cat ~/.m2/settings.xml - - - name: Publish to Apache Maven Central - run: | - mvn -X \ - install \ - org.apache.maven.plugins:maven-deploy-plugin:deploy \ - --batch-mode \ - --no-transfer-progress \ - -Dgpg.executable=gpg \ - -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} \ - -Dgpg.skip=false -e - env: - MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} - MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} - GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - name: Set up JDK 8 + uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0 + with: + java-version: '8' + distribution: 'adopt' + server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml + server-username: ${{ secrets.MAVEN_USERNAME }} # Use the actual secret + server-password: ${{ secrets.MAVEN_PASSWORD }} # Use the actual secret + gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} # Value of the GPG private key to import + gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }} # Use the actual secret + env: + MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} + MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} + GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} + + - name: Print folder + run: ls -al . + + - name: Print m2 settings + continue-on-error: true + run: cat ~/.m2/settings.xml + + - name: Publish to Apache Maven Central + run: | + mvn \ + install \ + deploy \ + --batch-mode \ + --no-transfer-progress \ + -Dgpg.skip=false + env: + MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} + MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} + GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} From c091c5353dffaf45f8c4fab48ff329ba464809ac Mon Sep 17 00:00:00 2001 From: JeremyTubongbanua Date: Sun, 27 Oct 2024 02:34:20 -0400 Subject: [PATCH 08/13] ci: --- .github/workflows/maven-deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml index de5ba5f..9c83b64 100644 --- a/.github/workflows/maven-deploy.yml +++ b/.github/workflows/maven-deploy.yml @@ -24,8 +24,10 @@ jobs: server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml server-username: ${{ secrets.MAVEN_USERNAME }} # Use the actual secret server-password: ${{ secrets.MAVEN_PASSWORD }} # Use the actual secret + server-password-encrypted: false # Disable encryption gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} # Value of the GPG private key to import gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }} # Use the actual secret + gpg-passphrase-encrypted: false # Disable encryption env: MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} @@ -45,7 +47,8 @@ jobs: deploy \ --batch-mode \ --no-transfer-progress \ - -Dgpg.skip=false + -Dgpg.skip=false \ + -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} env: MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} From f7907afe9845cfbd2d00f5a7112367df10f3092e Mon Sep 17 00:00:00 2001 From: JeremyTubongbanua Date: Sun, 27 Oct 2024 02:36:05 -0400 Subject: [PATCH 09/13] ci: --- .github/workflows/maven-deploy.yml | 50 ++++++++++++------------------ 1 file changed, 20 insertions(+), 30 deletions(-) diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml index 9c83b64..63b5d6b 100644 --- a/.github/workflows/maven-deploy.yml +++ b/.github/workflows/maven-deploy.yml @@ -5,7 +5,7 @@ on: branches: - trunk -permissions: # added using https://github.com/step-security/secure-workflows +permissions: contents: read jobs: @@ -15,41 +15,31 @@ jobs: working-directory: at_client runs-on: ubuntu-latest steps: - - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/checkout@v4 + - name: Set up JDK 8 - uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0 + uses: actions/setup-java@v4 with: java-version: '8' distribution: 'adopt' - server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml - server-username: ${{ secrets.MAVEN_USERNAME }} # Use the actual secret - server-password: ${{ secrets.MAVEN_PASSWORD }} # Use the actual secret - server-password-encrypted: false # Disable encryption - gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} # Value of the GPG private key to import - gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }} # Use the actual secret - gpg-passphrase-encrypted: false # Disable encryption - env: - MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} - MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} - GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} + server-id: ossrh + server-username: ${{ secrets.MAVEN_USERNAME }} + server-password: ${{ secrets.MAVEN_PASSWORD }} - - name: Print folder - run: ls -al . + - name: Import GPG key + run: | + echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import --no-tty --yes + env: + GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} - - name: Print m2 settings - continue-on-error: true - run: cat ~/.m2/settings.xml + - name: List GPG keys + run: | + gpg --list-secret-keys --keyid-format LONG - name: Publish to Apache Maven Central run: | - mvn \ - install \ - deploy \ - --batch-mode \ - --no-transfer-progress \ - -Dgpg.skip=false \ - -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} - env: - MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} - MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} - GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} + mvn install deploy \ + --batch-mode \ + --no-transfer-progress \ + -Dgpg.skip=false \ + -Dgpg.passphrase="${{ secrets.GPG_PASSPHRASE }}" From e8017294aa60bce9bc64f504bdf16593fbe1b3e8 Mon Sep 17 00:00:00 2001 From: JeremyTubongbanua Date: Sun, 27 Oct 2024 02:41:20 -0400 Subject: [PATCH 10/13] ci: --- .github/workflows/maven-deploy.yml | 52 ++++++++++++++++++------------ 1 file changed, 31 insertions(+), 21 deletions(-) diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml index 63b5d6b..5042181 100644 --- a/.github/workflows/maven-deploy.yml +++ b/.github/workflows/maven-deploy.yml @@ -1,11 +1,14 @@ +# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created +# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path + name: Maven Deploy `at_client` to Nexus OSSRH on: push: branches: - trunk - -permissions: + +permissions: # added using https://github.com/step-security/secure-workflows contents: read jobs: @@ -15,31 +18,38 @@ jobs: working-directory: at_client runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Set up JDK 8 - uses: actions/setup-java@v4 + uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0 with: java-version: '8' distribution: 'adopt' - server-id: ossrh - server-username: ${{ secrets.MAVEN_USERNAME }} - server-password: ${{ secrets.MAVEN_PASSWORD }} - - - name: Import GPG key - run: | - echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import --no-tty --yes + server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml + server-username: "MAVEN_USERNAME" # env variable for username in deploy + server-password: "MAVEN_PASSWORD" # env variable for token in deploy + gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} # Value of the GPG private key to import + gpg-passphrase: "GPG_PASSPHRASE" # env variable for GPG private key passphrase env: - GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} + MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} + MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} + GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} - - name: List GPG keys - run: | - gpg --list-secret-keys --keyid-format LONG + - name: Print folder + run: ls -al . + + - name: Print m2 settings + continue-on-error: true + run: cat ~/.m2/settings.xml - name: Publish to Apache Maven Central run: | - mvn install deploy \ - --batch-mode \ - --no-transfer-progress \ - -Dgpg.skip=false \ - -Dgpg.passphrase="${{ secrets.GPG_PASSPHRASE }}" + mvn \ + install \ + deploy \ + --batch-mode \ + --no-transfer-progress \ + -Dgpg.skip=false + env: + MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} + MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} + GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} \ No newline at end of file From 46fc770fea728bb4e66f4d3f9079e56be5fbfb7b Mon Sep 17 00:00:00 2001 From: JeremyTubongbanua Date: Sun, 27 Oct 2024 02:45:05 -0400 Subject: [PATCH 11/13] ci: --- .github/workflows/maven-deploy.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml index 5042181..2fefb21 100644 --- a/.github/workflows/maven-deploy.yml +++ b/.github/workflows/maven-deploy.yml @@ -4,6 +4,7 @@ name: Maven Deploy `at_client` to Nexus OSSRH on: + workflow_dispatch: push: branches: - trunk From b04172020bef2e435594a54fe708f3967ddd4ff7 Mon Sep 17 00:00:00 2001 From: JeremyTubongbanua Date: Sun, 27 Oct 2024 02:51:29 -0400 Subject: [PATCH 12/13] docs: new line --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 22c23c0..4269417 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,7 @@ The Java SDK can be added to your project through a compiled JAR or by Maven! ``` ## Getting Started + #### Note: Java and Maven are Prerequisites to use at_java Clone the at_java repo from GItHub using From 7c4909f77222ee7e8c3b2fcef0830c6b5f12edd1 Mon Sep 17 00:00:00 2001 From: JeremyTubongbanua Date: Sun, 27 Oct 2024 02:55:16 -0400 Subject: [PATCH 13/13] cd: --- .github/workflows/maven-deploy.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/maven-deploy.yml b/.github/workflows/maven-deploy.yml index 2fefb21..5042181 100644 --- a/.github/workflows/maven-deploy.yml +++ b/.github/workflows/maven-deploy.yml @@ -4,7 +4,6 @@ name: Maven Deploy `at_client` to Nexus OSSRH on: - workflow_dispatch: push: branches: - trunk