diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index d3f82647..821f0c67 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -92,18 +92,21 @@ jobs: tag: needs: [ build, unit-tests-and-sonarqube, source-clear ] uses: ./.github/workflows/tag.yml - if: success() && github.ref == 'refs/heads/main' + if: success() +# if: success() && github.ref == 'refs/heads/main' publish-library: needs: [ tag ] uses: ./.github/workflows/publish.yml - if: success() && github.ref == 'refs/heads/main' + if: success() +# if: success() && github.ref == 'refs/heads/main' with: tag: ${{ needs.tag.outputs.tag }} release-cli: needs: [ tag ] uses: ./.github/workflows/release-cli.yml - if: success() && github.ref == 'refs/heads/main' + if: success() +# if: success() && github.ref == 'refs/heads/main' with: tag: ${{ needs.tag.outputs.tag }}