mirror of
https://github.com/MariaDB/mariadb-docker.git
synced 2025-07-23 00:28:15 +00:00
operator test: contains rather than endsWith
This commit is contained in:
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -103,12 +103,12 @@ jobs:
|
||||
if: ${{ env.DEPLOY_IMAGES == 'true' }}
|
||||
run: docker push ghcr.io/mariadb/mariadb:${{ matrix.name }}
|
||||
- name: MariaDB Operator Test (non-UBI)
|
||||
if: ${{ env.DEPLOY_IMAGES == 'true' && !endsWith( matrix.name, 'ubi') }}
|
||||
if: ${{ env.DEPLOY_IMAGES == 'true' && !contains( matrix.name, 'ubi') }}
|
||||
run: gh workflow run test-image.yml --repo mariadb-operator/mariadb-operator -f mariadb_image=ghcr.io/mariadb/mariadb:${{ matrix.name }}
|
||||
env:
|
||||
GITHUB_TOKEN: "${{ secrets.MARIADB_OPERATOR_TOKEN }}"
|
||||
- name: MariaDB Operator Test (UBI)
|
||||
if: ${{ env.DEPLOY_IMAGES == 'true' && endsWith( matrix.name, 'ubi') }}
|
||||
if: ${{ env.DEPLOY_IMAGES == 'true' && contains( matrix.name, 'ubi') }}
|
||||
run: gh workflow run test-image-ent.yml --repo mariadb-operator/mariadb-operator -f mariadb_image=ghcr.io/mariadb/mariadb:${{ matrix.name }}
|
||||
env:
|
||||
GITHUB_TOKEN: "${{ secrets.MARIADB_OPERATOR_TOKEN }}"
|
||||
|
Reference in New Issue
Block a user