Skip to content

Commit 6925f94

Browse files
authored
Merge pull request #236 from crazy-max/master
Fix e2e workflow syntax
2 parents 1f1cc26 + bf3d577 commit 6925f94

File tree

1 file changed

+19
-17
lines changed

1 file changed

+19
-17
lines changed

.github/workflows/e2e.yml

+19-17
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,25 @@ on:
1313
jobs:
1414
docker:
1515
runs-on: ubuntu-latest
16-
matrix:
17-
include:
18-
-
19-
registry: ''
20-
slug: ghactionstest/ghactionstest
21-
username_secret: DOCKERHUB_USERNAME
22-
password_secret: DOCKERHUB_TOKEN
23-
-
24-
registry: ghcr.io
25-
slug: ghcr.io/docker-ghactiontest/test
26-
username_secret: GHCR_USERNAME
27-
password_secret: GHCR_PAT
28-
-
29-
registry: registry.gitlab.com
30-
slug: registry.gitlab.com/test1716/test
31-
username_secret: GITLAB_USERNAME
32-
password_secret: GITLAB_TOKEN
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
include:
20+
-
21+
registry: ''
22+
slug: ghactionstest/ghactionstest
23+
username_secret: DOCKERHUB_USERNAME
24+
password_secret: DOCKERHUB_TOKEN
25+
-
26+
registry: ghcr.io
27+
slug: ghcr.io/docker-ghactiontest/test
28+
username_secret: GHCR_USERNAME
29+
password_secret: GHCR_PAT
30+
-
31+
registry: registry.gitlab.com
32+
slug: registry.gitlab.com/test1716/test
33+
username_secret: GITLAB_USERNAME
34+
password_secret: GITLAB_TOKEN
3335
steps:
3436
-
3537
name: Checkout

0 commit comments

Comments
 (0)