From e23f9ea6a4562306f7c5e6b2b0dfab3ebe2fa7f2 Mon Sep 17 00:00:00 2001 From: lowlighter <22963968+lowlighter@users.noreply.github.com> Date: Thu, 10 Dec 2020 13:02:05 +0100 Subject: [PATCH] Fix workflow bad job name --- .github/workflows/workflow.yml | 6 +++--- utils/workflow.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 5152c694..d66232f9 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -25,7 +25,7 @@ jobs: analyze: runs-on: ubuntu-latest - needs: ["test@master","test@latest"] + needs: ["test-master","test-latest"] steps: - name: Checkout uses: actions/checkout@v2 @@ -40,7 +40,7 @@ jobs: # Tests cases below are auto generated through `npm run build` # Edit utils/workflow.yml instead if you need to update workflow - test@master: + test-master: needs: build runs-on: ubuntu-latest strategy: @@ -282,7 +282,7 @@ jobs: plugin_projects_limit: 2 - test@latest: + test-latest: needs: build runs-on: ubuntu-latest strategy: diff --git a/utils/workflow.yml b/utils/workflow.yml index 6a771a4d..87f9e8b1 100644 --- a/utils/workflow.yml +++ b/utils/workflow.yml @@ -25,7 +25,7 @@ jobs: analyze: runs-on: ubuntu-latest - needs: <%- JSON.stringify(releases.map(release => `test@${release}`)) %> + needs: <%- JSON.stringify(releases.map(release => `test-${release}`)) %> steps: - name: Checkout uses: actions/checkout@v2 @@ -40,7 +40,7 @@ jobs: # Tests cases below are auto generated through `npm run build` # Edit utils/workflow.yml instead if you need to update workflow <% for (const release of releases) { %> - test@<%- release %>: + test-<%- release %>: needs: build runs-on: ubuntu-latest strategy: