From 382b4d3689b66d7adfcf2fe9746c09e2eb876c95 Mon Sep 17 00:00:00 2001 From: Jason Adams Date: Thu, 28 Jan 2021 11:42:04 -0800 Subject: [PATCH] chore: fix github workflows by removing non-existent job dependency --- .github/workflows/prerelease.yml | 3 +-- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 78f13d3..3fb811a 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -8,8 +8,7 @@ jobs: build: name: Build Plugin Artifact runs-on: ubuntu-latest - needs: tests - + steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fb2d151..d403f01 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ jobs: release: name: New release runs-on: ubuntu-latest - needs: tests + steps: - name: Checkout code uses: actions/checkout@v2