Fix workflow bad job name

This commit is contained in:
lowlighter
2020-12-10 13:02:05 +01:00
parent 484a124441
commit e23f9ea6a4
2 changed files with 5 additions and 5 deletions

View File

@@ -25,7 +25,7 @@ jobs:
analyze: analyze:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: ["test@master","test@latest"] needs: ["test-master","test-latest"]
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
@@ -40,7 +40,7 @@ jobs:
# Tests cases below are auto generated through `npm run build` # Tests cases below are auto generated through `npm run build`
# Edit utils/workflow.yml instead if you need to update workflow # Edit utils/workflow.yml instead if you need to update workflow
test@master: test-master:
needs: build needs: build
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
@@ -282,7 +282,7 @@ jobs:
plugin_projects_limit: 2 plugin_projects_limit: 2
test@latest: test-latest:
needs: build needs: build
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:

View File

@@ -25,7 +25,7 @@ jobs:
analyze: analyze:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: <%- JSON.stringify(releases.map(release => `test@${release}`)) %> needs: <%- JSON.stringify(releases.map(release => `test-${release}`)) %>
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
@@ -40,7 +40,7 @@ jobs:
# Tests cases below are auto generated through `npm run build` # Tests cases below are auto generated through `npm run build`
# Edit utils/workflow.yml instead if you need to update workflow # Edit utils/workflow.yml instead if you need to update workflow
<% for (const release of releases) { %> <% for (const release of releases) { %>
test@<%- release %>: test-<%- release %>:
needs: build needs: build
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy: