From e00100eb83192197cba43c7966a045d2da7634aa Mon Sep 17 00:00:00 2001 From: pyth0n1c <87383215+pyth0n1c@users.noreply.github.com> Date: Thu, 26 Aug 2021 13:00:55 -0700 Subject: [PATCH] Removed incorrect 'needs' from the release yml file --- .github/workflows/release-checks.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release-checks.yml b/.github/workflows/release-checks.yml index 901e35d754..00a40668ce 100644 --- a/.github/workflows/release-checks.yml +++ b/.github/workflows/release-checks.yml @@ -9,7 +9,6 @@ on: jobs: run-appinspect: runs-on: ubuntu-latest - needs: [validate-content, build-sources, build-package] #Only run when tagged if: ${{ startsWith(github.ref, 'refs/tags/v') && github.event.workflow_run.conclusion == 'success' }} steps: @@ -79,7 +78,7 @@ jobs: create-report: runs-on: ubuntu-latest - needs: [validate-content, build-sources, build-package, run-appinspect] + needs: [run-appinspect] #Only run when tagged if: ${{ startsWith(github.ref, 'refs/tags/v') && github.event.workflow_run.conclusion == 'success' }} steps: @@ -126,7 +125,7 @@ jobs: update-sources-github: runs-on: ubuntu-latest - needs: [validate-content, build-sources, build-package, run-appinspect, create-report] + needs: [run-appinspect, create-report] #Only run when tagged if: ${{ startsWith(github.ref, 'refs/tags/v') && github.event.workflow_run.conclusion == 'success' }} steps: @@ -221,7 +220,7 @@ jobs: #Github-maintained release action is in archived state: https://github.com/actions/create-release #They recommend several and we use the following with the most stars: https://github.com/softprops/action-gh-release runs-on: ubuntu-latest - needs: [validate-content, build-sources, build-package, run-appinspect, create-report, update-sources-github] + needs: [run-appinspect, create-report, update-sources-github] #Only run when tagged if: ${{ startsWith(github.ref, 'refs/tags/v') && github.event.workflow_run.conclusion == 'success' }} steps: @@ -270,7 +269,7 @@ jobs: attack-range-update: runs-on: ubuntu-latest - needs: [validate-content, build-sources, build-package, run-appinspect, create-report, update-sources-github, publish-github-release] + needs: [run-appinspect, create-report, update-sources-github, publish-github-release] #Only run when tagged if: ${{ startsWith(github.ref, 'refs/tags/v') && github.event.workflow_run.conclusion == 'success' }} steps: @@ -298,7 +297,7 @@ jobs: master-api-update: runs-on: ubuntu-latest - needs: [validate-content, build-sources, build-package, run-appinspect, create-report, update-sources-github, publish-github-release, attack-range-update] + needs: [run-appinspect, create-report, update-sources-github, publish-github-release, attack-range-update] #Only run when tagged if: ${{ startsWith(github.ref, 'refs/tags/v') && github.event.workflow_run.conclusion == 'success' }} steps: