From fe827e4a5fdbf0a8d9227c8eadac1155ae98bb19 Mon Sep 17 00:00:00 2001 From: Harrel Date: Mon, 31 Jul 2023 23:06:17 +0200 Subject: [PATCH 01/19] matrix test --- .github/workflows/matrix.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/matrix.yml diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml new file mode 100644 index 00000000..be7a6dfb --- /dev/null +++ b/.github/workflows/matrix.yml @@ -0,0 +1,30 @@ +name: matrix_test + +on: + pull_request: + push: + branches: [ master ] + +jobs: + provider-list: + runs-on: ubuntu-latest + outputs: + test-classes: ${{ steps.images-matrix.outputs.images }} + steps: + - name: Git checkout + uses: actions/checkout@v3 + - name: List provider test classes + id: test-classes + run: ls src/test/java/dev/harrel/jsonschema/providers/ | sed 's/\.java$//' >> "$GITHUB_OUTPUT" + + matr: + needs: provider-list + runs-on: ubuntu-latest + + strategy: + matrix: + test-class: ${{ needs.provider-list.outputs.test-classes }} + + steps: + - uses: actions/checkout@v3 + - run: echo "hello" \ No newline at end of file From cc011131474969b82f2d3c64b826b97338c86fa3 Mon Sep 17 00:00:00 2001 From: Harrel Date: Mon, 31 Jul 2023 23:11:22 +0200 Subject: [PATCH 02/19] matrix test --- .github/workflows/matrix.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index be7a6dfb..77de1931 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -15,7 +15,8 @@ jobs: uses: actions/checkout@v3 - name: List provider test classes id: test-classes - run: ls src/test/java/dev/harrel/jsonschema/providers/ | sed 's/\.java$//' >> "$GITHUB_OUTPUT" + run: echo "h1 h2 h3" >> "$GITHUB_OUTPUT" +# run: ls src/test/java/dev/harrel/jsonschema/providers/ | sed 's/\.java$//' >> "$GITHUB_OUTPUT" matr: needs: provider-list From c969342a3523351af31305f46755d39e58279fa6 Mon Sep 17 00:00:00 2001 From: Harrel Date: Mon, 31 Jul 2023 23:13:19 +0200 Subject: [PATCH 03/19] matrix test --- .github/workflows/matrix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index 77de1931..cc8cbba9 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v3 - name: List provider test classes id: test-classes - run: echo "h1 h2 h3" >> "$GITHUB_OUTPUT" + run: echo "h1=h1" >> "$GITHUB_OUTPUT" # run: ls src/test/java/dev/harrel/jsonschema/providers/ | sed 's/\.java$//' >> "$GITHUB_OUTPUT" matr: From 389103fdc7e243af1b2b3b41619b3d5ee7bac900 Mon Sep 17 00:00:00 2001 From: Harrel Date: Mon, 31 Jul 2023 23:30:30 +0200 Subject: [PATCH 04/19] matrix test --- .github/workflows/matrix.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index cc8cbba9..fa02b951 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -15,8 +15,7 @@ jobs: uses: actions/checkout@v3 - name: List provider test classes id: test-classes - run: echo "h1=h1" >> "$GITHUB_OUTPUT" -# run: ls src/test/java/dev/harrel/jsonschema/providers/ | sed 's/\.java$//' >> "$GITHUB_OUTPUT" + run: ls src/test/java/dev/harrel/jsonschema/providers/ | sed 's/\.java$//' | jq -R -s -c 'split("\n")[:-1]' >> "$GITHUB_OUTPUT" matr: needs: provider-list From 2e0a07bed73f108e09ef4380fe4f48b6004ffc45 Mon Sep 17 00:00:00 2001 From: Harrel Date: Mon, 31 Jul 2023 23:32:47 +0200 Subject: [PATCH 05/19] matrix test --- .github/workflows/matrix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index fa02b951..d9f7c2ef 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v3 - name: List provider test classes id: test-classes - run: ls src/test/java/dev/harrel/jsonschema/providers/ | sed 's/\.java$//' | jq -R -s -c 'split("\n")[:-1]' >> "$GITHUB_OUTPUT" + run: ls src/test/java/dev/harrel/jsonschema/providers/ | sed 's/\.java$//' | jq -R -s -c 'split("\n")[:-1]' matr: needs: provider-list From 90d5ae9a226559cdd2f29ef290d853c480df2d5d Mon Sep 17 00:00:00 2001 From: Harrel Date: Mon, 31 Jul 2023 23:37:45 +0200 Subject: [PATCH 06/19] matrix test --- .github/workflows/matrix.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index d9f7c2ef..3bd4c957 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -9,13 +9,15 @@ jobs: provider-list: runs-on: ubuntu-latest outputs: - test-classes: ${{ steps.images-matrix.outputs.images }} + test-classes: ${{ steps.test-classes.outputs.test-classes }} steps: - name: Git checkout uses: actions/checkout@v3 - name: List provider test classes id: test-classes - run: ls src/test/java/dev/harrel/jsonschema/providers/ | sed 's/\.java$//' | jq -R -s -c 'split("\n")[:-1]' + run: | + CLASSES = ls src/test/java/dev/harrel/jsonschema/providers/ | sed 's/\.java$//' | jq -R -s -c 'split("\n")[:-1]' + echo "test-classes=$CLASSES" >> "$GITHUB_OUTPUT" matr: needs: provider-list From db2c92a976b804b933c9dbb1b05533b769afef71 Mon Sep 17 00:00:00 2001 From: Harrel Date: Mon, 31 Jul 2023 23:39:48 +0200 Subject: [PATCH 07/19] matrix test --- .github/workflows/matrix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index 3bd4c957..0aaae642 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -16,7 +16,7 @@ jobs: - name: List provider test classes id: test-classes run: | - CLASSES = ls src/test/java/dev/harrel/jsonschema/providers/ | sed 's/\.java$//' | jq -R -s -c 'split("\n")[:-1]' + CLASSES=$(ls src/test/java/dev/harrel/jsonschema/providers/ | sed 's/\.java$//' | jq -R -s -c 'split("\n")[:-1]') echo "test-classes=$CLASSES" >> "$GITHUB_OUTPUT" matr: From 66acb798e5ff94b9038711d23ecf2526fb573cbd Mon Sep 17 00:00:00 2001 From: Harrel Date: Mon, 31 Jul 2023 23:41:08 +0200 Subject: [PATCH 08/19] matrix test --- .github/workflows/matrix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index 0aaae642..f0b5586d 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: - test-class: ${{ needs.provider-list.outputs.test-classes }} + test-class: ${{ fromJSON(needs.provider-list.outputs.test-classes) }} steps: - uses: actions/checkout@v3 From e5466658a781988bb2f1980e7d9d058913383a1a Mon Sep 17 00:00:00 2001 From: Harrel Date: Mon, 31 Jul 2023 23:45:42 +0200 Subject: [PATCH 09/19] matrix test --- .github/workflows/matrix.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index f0b5586d..95c5a0fd 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -29,4 +29,17 @@ jobs: steps: - uses: actions/checkout@v3 - - run: echo "hello" \ No newline at end of file + - run: echo "hello" + - name: Setup java + uses: actions/setup-java@v3 + with: + distribution: corretto + java-version: 17 + + - name: Setup Gradle + uses: gradle/gradle-build-action@v2 + with: + gradle-version: 8.2.1 + + - name: Gradle provider tests + run: ./gradlew test --tests ${{ matrix }} \ No newline at end of file From 570dd94e89fba91456d8c88292ccec0f9653aecc Mon Sep 17 00:00:00 2001 From: Harrel Date: Mon, 31 Jul 2023 23:48:15 +0200 Subject: [PATCH 10/19] matrix test --- .github/workflows/matrix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index 95c5a0fd..e01d66af 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -42,4 +42,4 @@ jobs: gradle-version: 8.2.1 - name: Gradle provider tests - run: ./gradlew test --tests ${{ matrix }} \ No newline at end of file + run: ./gradlew test --tests ${{ matrix.test-class }} \ No newline at end of file From 6c224817deff212c139d31869f41d272defd2b4f Mon Sep 17 00:00:00 2001 From: Harrel Date: Mon, 31 Jul 2023 23:55:48 +0200 Subject: [PATCH 11/19] matrix test --- .github/workflows/matrix.yml | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index e01d66af..09a3d3f7 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -6,6 +6,32 @@ on: branches: [ master ] jobs: + build-gradle: + runs-on: ubuntu-latest + steps: + - name: Git checkout + uses: actions/checkout@v3 + + - name: Setup java + uses: actions/setup-java@v3 + with: + distribution: corretto + java-version: 17 + + - name: Setup Gradle + uses: gradle/gradle-build-action@v2 + with: + gradle-version: 8.2.1 + + - name: Gradle build + run: ./gradlew build testClasses -x check --no-daemon + + - name: Upload build + uses: actions/upload-artifact@v3 + with: + name: build-output + path: build + provider-list: runs-on: ubuntu-latest outputs: @@ -29,7 +55,6 @@ jobs: steps: - uses: actions/checkout@v3 - - run: echo "hello" - name: Setup java uses: actions/setup-java@v3 with: @@ -41,5 +66,9 @@ jobs: with: gradle-version: 8.2.1 + - uses: actions/download-artifact@v3 + with: + name: build-output + - name: Gradle provider tests - run: ./gradlew test --tests ${{ matrix.test-class }} \ No newline at end of file + run: ./gradlew test --tests ${{ matrix.test-class }} --no-daemon \ No newline at end of file From 7178119f3c07be8a05685176a735b69619d70f1a Mon Sep 17 00:00:00 2001 From: Harrel Date: Mon, 31 Jul 2023 23:56:49 +0200 Subject: [PATCH 12/19] matrix test --- .github/workflows/matrix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index 09a3d3f7..dba049ff 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -46,7 +46,7 @@ jobs: echo "test-classes=$CLASSES" >> "$GITHUB_OUTPUT" matr: - needs: provider-list + needs: [ build-gradle, provider-list ] runs-on: ubuntu-latest strategy: From f879110cff17dbe175710d1e52999cb5fc7c2274 Mon Sep 17 00:00:00 2001 From: Harrel Date: Tue, 1 Aug 2023 23:29:43 +0200 Subject: [PATCH 13/19] matrix test --- .github/workflows/matrix.yml | 71 +++++++++++++++++++++++++++++++----- setup/reporting.gradle | 2 + setup/testing.gradle | 11 ++++++ 3 files changed, 74 insertions(+), 10 deletions(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index dba049ff..0c0f65c9 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -6,7 +6,7 @@ on: branches: [ master ] jobs: - build-gradle: + generic-tests: runs-on: ubuntu-latest steps: - name: Git checkout @@ -23,14 +23,20 @@ jobs: with: gradle-version: 8.2.1 - - name: Gradle build - run: ./gradlew build testClasses -x check --no-daemon + - name: Run generic tests + run: ./gradlew check -x test --no-daemon + + - name: Upload test execution data + uses: actions/upload-artifact@v3 + with: + name: generic-tests-exec + path: build/jacoco - name: Upload build uses: actions/upload-artifact@v3 with: name: build-output - path: build + path: build/lib provider-list: runs-on: ubuntu-latest @@ -45,8 +51,8 @@ jobs: CLASSES=$(ls src/test/java/dev/harrel/jsonschema/providers/ | sed 's/\.java$//' | jq -R -s -c 'split("\n")[:-1]') echo "test-classes=$CLASSES" >> "$GITHUB_OUTPUT" - matr: - needs: [ build-gradle, provider-list ] + provider-tests: + needs: provider-list runs-on: ubuntu-latest strategy: @@ -66,9 +72,54 @@ jobs: with: gradle-version: 8.2.1 - - uses: actions/download-artifact@v3 + - name: Gradle provider tests + run: ./gradlew test --tests ${{ matrix.test-class }} --no-daemon + + - name: Rename test execution data + run: mv build/jacoco/test.exec build/jacoco/${{ matrix.test-class }}.exec + + - name: Upload test execution data + uses: actions/upload-artifact@v3 with: - name: build-output + name: ${{ matrix.test-class }}-tests-exec + path: build/jacoco - - name: Gradle provider tests - run: ./gradlew test --tests ${{ matrix.test-class }} --no-daemon \ No newline at end of file + report: + needs: [generic-tests, provider-tests] + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Setup java + uses: actions/setup-java@v3 + with: + distribution: corretto + java-version: 17 + + - name: Setup Gradle + uses: gradle/gradle-build-action@v2 + with: + gradle-version: 8.2.1 + + - name: Download test execution data + uses: actions/download-artifact@v3 + with: + path: build/jacoco + + - name: Gradle jacoco report + run: ./gradlew jacocoTestReport --no-daemon + + - name: Generate coverage badge + uses: cicirello/jacoco-badge-generator@v2 + with: + jacoco-csv-file: build/reports/jacoco/test/jacocoTestReport.csv + generate-coverage-badge: true + generate-coverage-endpoint: true + + - name: Upload report + uses: actions/upload-artifact@v3 + with: + name: report-output + path: | + build/reports + .github/badges/jacoco.svg \ No newline at end of file diff --git a/setup/reporting.gradle b/setup/reporting.gradle index 6a772bff..cbacde57 100644 --- a/setup/reporting.gradle +++ b/setup/reporting.gradle @@ -1,4 +1,6 @@ jacocoTestReport { + executionData fileTree(project.buildDir).include("jacoco/*.exec") + reports.html.required = false reports.csv.required = true reports.xml.required = true diff --git a/setup/testing.gradle b/setup/testing.gradle index 90ed4ba5..409f78bd 100644 --- a/setup/testing.gradle +++ b/setup/testing.gradle @@ -1,3 +1,14 @@ +tasks.register('genericTests', Test) { + description = 'Runs all tests that are not related to specific JSON providers (no specification tests)' + useJUnitPlatform() + group = 'verification' + + filter { + excludeTestsMatching 'dev.harrel.jsonschema.providers.*' + } +} +tasks.check.dependsOn genericTests + ext.setupProviderTest = (String provider, String dependency) -> { def taskName = "${provider}Test" def configName = "${taskName}Implementation" From 54a543731522b5d55bbda7dbc4e55d3aa60f8e8c Mon Sep 17 00:00:00 2001 From: Harrel Date: Tue, 1 Aug 2023 23:50:22 +0200 Subject: [PATCH 14/19] matrix test --- .github/workflows/matrix.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index 0c0f65c9..e1d38c72 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -32,12 +32,6 @@ jobs: name: generic-tests-exec path: build/jacoco - - name: Upload build - uses: actions/upload-artifact@v3 - with: - name: build-output - path: build/lib - provider-list: runs-on: ubuntu-latest outputs: @@ -106,6 +100,9 @@ jobs: with: path: build/jacoco + - name: Get exec data up one level + run: find build/jacoco -path 'build/jacoco/*/*' -execdir mv -t ../ {} + + - name: Gradle jacoco report run: ./gradlew jacocoTestReport --no-daemon From 568fabfae3fadeaf0fef44c0b2813511a5b1fe4b Mon Sep 17 00:00:00 2001 From: Harrel Date: Wed, 2 Aug 2023 00:02:52 +0200 Subject: [PATCH 15/19] fix gradle complaining --- setup/reporting.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/reporting.gradle b/setup/reporting.gradle index cbacde57..aa537958 100644 --- a/setup/reporting.gradle +++ b/setup/reporting.gradle @@ -1,5 +1,5 @@ jacocoTestReport { - executionData fileTree(project.buildDir).include("jacoco/*.exec") + executionData fileTree(project.rootDir.absolutePath).include("build/jacoco/*.exec") reports.html.required = false reports.csv.required = true From bc455a1d170e39d771525d4d599afbbbc3ca8c2f Mon Sep 17 00:00:00 2001 From: Harrel Date: Wed, 2 Aug 2023 19:34:18 +0200 Subject: [PATCH 16/19] workflows refactor --- .github/workflows/build.yml | 47 ++------------------- .github/workflows/{matrix.yml => tests.yml} | 12 ++++-- 2 files changed, 11 insertions(+), 48 deletions(-) rename .github/workflows/{matrix.yml => tests.yml} (94%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7e3ec174..b03a678d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,49 +6,8 @@ on: branches: [ master ] jobs: - build-gradle: - runs-on: ubuntu-latest - steps: - - name: Git checkout - uses: actions/checkout@v3 - - - name: Setup java - uses: actions/setup-java@v3 - with: - distribution: corretto - java-version: 17 - - - name: Setup Gradle - uses: gradle/gradle-build-action@v2 - with: - gradle-version: 8.2.1 - - - name: Gradle build - run: ./gradlew build testClasses -x check - - - name: Gradle check - run: ./gradlew check jacocoTestReport - - - name: Generate coverage badge - uses: cicirello/jacoco-badge-generator@v2 - with: - jacoco-csv-file: build/reports/jacoco/test/jacocoTestReport.csv - generate-coverage-badge: true - generate-coverage-endpoint: true - - - name: Upload build - uses: actions/upload-artifact@v3 - with: - name: build-output - path: | - build/libs - build/reports - .github/badges/jacoco.svg - - - name: Upload GH pages - uses: actions/upload-pages-artifact@v1 - with: - path: './.github/badges' + tests: + uses: ./.github/workflows/tests.yml sonar-cloud: runs-on: ubuntu-latest @@ -62,7 +21,7 @@ jobs: - uses: actions/download-artifact@v3 with: - name: build-output + name: report-output - name: Setup java uses: actions/setup-java@v3 diff --git a/.github/workflows/matrix.yml b/.github/workflows/tests.yml similarity index 94% rename from .github/workflows/matrix.yml rename to .github/workflows/tests.yml index e1d38c72..04d6ecb8 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/tests.yml @@ -1,6 +1,7 @@ -name: matrix_test +name: tests on: + workflow_call: pull_request: push: branches: [ master ] @@ -117,6 +118,9 @@ jobs: uses: actions/upload-artifact@v3 with: name: report-output - path: | - build/reports - .github/badges/jacoco.svg \ No newline at end of file + path: build/reports + + - name: Upload badge + uses: actions/upload-pages-artifact@v1 + with: + path: './.github/badges' \ No newline at end of file From fe20147e2c457f0a879dd6074dc1df4d900bfcea Mon Sep 17 00:00:00 2001 From: Harrel Date: Wed, 2 Aug 2023 19:35:43 +0200 Subject: [PATCH 17/19] workflows refactor --- .github/workflows/build.yml | 4 ++-- .github/workflows/tests.yml | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b03a678d..79fcb9ab 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: sonar-cloud: runs-on: ubuntu-latest - needs: build-gradle + needs: tests steps: - name: Git checkout @@ -43,7 +43,7 @@ jobs: deploy-gh-pages: if: github.ref == 'refs/heads/master' runs-on: ubuntu-latest - needs: build-gradle + needs: tests permissions: pages: write diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 04d6ecb8..9caec9a0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,9 +2,6 @@ name: tests on: workflow_call: - pull_request: - push: - branches: [ master ] jobs: generic-tests: From 0f09b0bc69f0169cb182fbdf56722cd56a1278f4 Mon Sep 17 00:00:00 2001 From: Harrel Date: Wed, 2 Aug 2023 19:42:22 +0200 Subject: [PATCH 18/19] workflows refactor --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 79fcb9ab..d1c23c18 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,6 +22,7 @@ jobs: - uses: actions/download-artifact@v3 with: name: report-output + path: build/reports - name: Setup java uses: actions/setup-java@v3 From c30a4f6fb012b02c75e915215a1eabd38fde5930 Mon Sep 17 00:00:00 2001 From: Harrel Date: Wed, 2 Aug 2023 20:08:34 +0200 Subject: [PATCH 19/19] workflows refactor --- .github/workflows/{deploy-sonatype.yml => deploy-release.yml} | 2 +- .github/workflows/{deploy.yml => deploy-tag.yml} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename .github/workflows/{deploy-sonatype.yml => deploy-release.yml} (98%) rename .github/workflows/{deploy.yml => deploy-tag.yml} (98%) diff --git a/.github/workflows/deploy-sonatype.yml b/.github/workflows/deploy-release.yml similarity index 98% rename from .github/workflows/deploy-sonatype.yml rename to .github/workflows/deploy-release.yml index b969b5a7..503b0cdc 100644 --- a/.github/workflows/deploy-sonatype.yml +++ b/.github/workflows/deploy-release.yml @@ -1,4 +1,4 @@ -name: deploy-sonatype +name: deploy-release on: workflow_dispatch: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy-tag.yml similarity index 98% rename from .github/workflows/deploy.yml rename to .github/workflows/deploy-tag.yml index c78aab09..8eaf45b2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy-tag.yml @@ -1,4 +1,4 @@ -name: deploy +name: deploy-tag on: push: