Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.

Commit 2a77ea5

Browse files
committed
Make the env var PLUGIN_DIR visible to make
1 parent 69e9694 commit 2a77ea5

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/e2e-tests.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: E2E Shell Tests
22

33
on:
44
push:
5-
pull_request:
6-
branches: [ "main" ]
75
workflow_dispatch:
86
inputs:
97
test_model:
@@ -68,10 +66,9 @@ jobs:
6866
- name: Install model-cli as Docker plugin (Windows)
6967
if: runner.os == 'Windows'
7068
run: |
71-
set PLUGIN_DIR=%ProgramData%\Docker\cli-plugins
72-
mkdir "%PLUGIN_DIR%" || echo already exists
73-
make install
74-
dir "%PLUGIN_DIR%"
69+
mkdir "%ProgramData%\Docker\cli-plugins" || echo already exists
70+
make install PLUGIN_DIR="%ProgramData%\Docker\cli-plugins"
71+
dir "%ProgramData%\Docker\cli-plugins"
7572
shell: cmd
7673

7774
- name: Test docker model version

0 commit comments

Comments
 (0)