Skip to content

Commit

Permalink
Fix tags with array
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyCTHsu committed Nov 15, 2023
1 parent 2d372da commit 99bbd9c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@ promote-image:
install-base-ruby-gems-amd64:
extends: .install-base-ruby-gems
image: $RUBY_CUSTOM_IMAGE_BASE/3.2.2-amd64:current
tags: "runner:main"
tags: [ "runner:main" ]

install-base-ruby-gems-arm64:
extends: .install-base-ruby-gems
image: $RUBY_CUSTOM_IMAGE_BASE/3.2.2-arm64:current
tags: "arch:arm64"
tags: [ "arch:arm64" ]

.install-version-dependant-gems:
parallel:
Expand All @@ -119,15 +119,15 @@ install-base-ruby-gems-arm64:
install-version-dependant-gems-amd64:
extends: .install-version-dependant-gems
image: $RUBY_CUSTOM_IMAGE_BASE/$RUBY_VERSION-amd64:current
tags: "runner:main"
tags: [ "runner:main" ]
needs:
- check-gem-presence
- install-base-ruby-gems-amd64

install-version-dependant-gems-arm64:
extends: .install-version-dependant-gems
image: $RUBY_CUSTOM_IMAGE_BASE/$RUBY_VERSION-arm64:current
tags: "arch:arm64"
tags: [ "arch:arm64" ]
needs:
- check-gem-presence
- install-base-ruby-gems-arm64
Expand Down

0 comments on commit 99bbd9c

Please sign in to comment.