From 63cfbecf9bcc8faff1ebc23a95bd08e563b6c1ab Mon Sep 17 00:00:00 2001 From: Teo Zosa Date: Fri, 6 Aug 2021 17:57:48 -0700 Subject: [PATCH] :construction_worker: Only publish release notes and tag commit if build verifications succeed --- {{cookiecutter.project_slug}}/.github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/.github/workflows/release.yml b/{{cookiecutter.project_slug}}/.github/workflows/release.yml index 0724170e2..f1d95030c 100644 --- a/{{cookiecutter.project_slug}}/.github/workflows/release.yml +++ b/{{cookiecutter.project_slug}}/.github/workflows/release.yml @@ -283,7 +283,10 @@ jobs: publish-release-notes: name: Publish release notes runs-on: ubuntu-latest - needs: get-tag-xor-dev-version + needs: + - get-tag-xor-dev-version + {% if cookiecutter.project_type == 'package' -%} - verify-user-install {%- endif %} + - docker-image-build-and-upload steps: - name: Check out the repository uses: actions/checkout@v2.3.3