File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,15 @@ on: # yamllint disable-line rule:truthy
12
12
- completed
13
13
jobs :
14
14
test :
15
+ env :
16
+ project-name : z-wave-protocol-controller # Align to docker (lowercase)
15
17
runs-on : ubuntu-24.04
16
18
if : ${{ github.event.workflow_run.conclusion == 'success' }}
17
19
steps :
18
20
- name : Download image
19
21
20
22
with :
21
- image : " ${{ github.event.repository. name }}:latest"
23
+ image : " ${{ env.project- name }}:latest"
22
24
workflow : " build"
23
25
token : ${{ secrets.GH_SL_ACCESS_TOKEN }}
24
26
workflow_run_id : ${{ github.event.workflow_run.id }}
55
57
run : |
56
58
set -x
57
59
export ZPC_RUN_MODE="docker"
58
- export ZPC_COMMAND="docker run ${{ github.event.repository. name }}"
60
+ export ZPC_COMMAND="docker run ${{ env.project- name }}"
59
61
$ZPC_COMMAND --version
60
62
docker-compose pull
61
63
export ZPC_COMMAND="docker-compose up --abort-on-container-exit"
You can’t perform that action at this time.
0 commit comments