Skip to content

Commit f3f9d29

Browse files
committed
Fix podman version check conditional expression
Signed-off-by: Aravindhan Ayyanathan <aravindhan.a@est.tech>
1 parent bebee38 commit f3f9d29

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2019 The kpt Authors
1+
# Copyright 2019-2026 The kpt Authors
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -45,7 +45,7 @@ jobs:
4545
steps:
4646
# The CI complains about the podman not installed, adding some debugging info here.
4747
- name: check podman
48-
if: ${{ matrix.runtime }} == 'podman'
48+
if: ${{ matrix.runtime == 'podman' }}
4949
run: |
5050
which podman
5151
podman version

0 commit comments

Comments
 (0)