We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 786ade4 commit deb3c83Copy full SHA for deb3c83
.github/workflows/test.yml
@@ -151,6 +151,23 @@ jobs:
151
ibmcloud plugin list | grep -q '^secrets-manager\b' &&
152
ibmcloud plugin list | grep -q '^container-registry\b.\+1\.3\.\b'
153
154
+ test-plugins-already-installed:
155
+ runs-on: ubuntu-latest
156
+ steps:
157
+ - uses: actions/checkout@v6
158
+ - name: Set up ibmcloud CLI
159
+ uses: ./
160
+ with:
161
+ plugins: container-service
162
+ - name: Set up ibmcloud CLI (again)
163
164
165
+ plugins: container-service secrets-manager
166
+ - name: Check plugins are installed
167
+ run: |
168
+ ibmcloud plugin list | grep -q '^container-service\b' &&
169
+ ibmcloud plugin list | grep -q '^secrets-manager\b'
170
+
171
test-login:
172
runs-on: ubuntu-latest
173
steps:
0 commit comments