diff --git a/.circleci/config.yml b/.circleci/config.yml index dd9adf4c00..829e1e60b9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -140,15 +140,6 @@ jobs: path: lib-extra/build/test-results/test - store_test_results: path: plugin-gradle/build/test-results/test - changelog_print: - << : *env_gradle - steps: - - checkout - - *restore_cache_wrapper - - *restore_cache_deps - - run: - name: gradlew changelogPrint - command: ./gradlew changelogPrint do_release_all: << : *env_gradle steps: @@ -276,46 +267,26 @@ workflows: - assemble_testClasses deploy: jobs: - - changelog_print: - filters: - branches: - only: main - release_all: type: approval - requires: - - changelog_print - do_release_all: requires: - release_all - context: - - SonatypeDeploy - release_plugin_gradle: type: approval - requires: - - changelog_print - do_release_plugin_gradle: requires: - release_plugin_gradle - context: - - SonatypeDeploy - release_plugin_maven: type: approval - requires: - - changelog_print - do_release_plugin_maven: requires: - release_plugin_maven - context: - - SonatypeDeploy - release_lib: type: approval - requires: - - changelog_print - do_release_lib: requires: - release_lib - context: - - SonatypeDeploy ext_deploy: jobs: - ext_changelog_print: diff --git a/.github/workflows/changelog-print.yml b/.github/workflows/changelog-print.yml new file mode 100644 index 0000000000..0641124750 --- /dev/null +++ b/.github/workflows/changelog-print.yml @@ -0,0 +1,20 @@ +name: changelogPrint + +on: + push: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + name: changelogPrint + steps: + - uses: actions/checkout@v3 + - name: jdk 11 + uses: actions/setup-java@v3 + with: + java-version: 11 + distribution: 'temurin' + - name: gradle caching + uses: gradle/gradle-build-action@v2 + - run: ./gradlew changelogPrint