From 2d82292f48f171b45547fb9f76ee52cce77ec5e6 Mon Sep 17 00:00:00 2001 From: Shelby Holden Date: Wed, 2 Aug 2023 21:37:23 -0400 Subject: [PATCH] UNDO BEFORE MERGE - undo main wip --- .github/workflows/build-and-test.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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 }}