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
1212 - completed
1313jobs :
1414 test :
15+ env :
16+ project-name : z-wave-protocol-controller # Align to docker (lowercase)
1517 runs-on : ubuntu-24.04
1618 if : ${{ github.event.workflow_run.conclusion == 'success' }}
1719 steps :
1820 - name : Download image
1921 uses : ishworkh/container-image-artifact-download@v2.0.0
2022 with :
21- image : " ${{ github.event.repository. name }}:latest"
23+ image : " ${{ env.project- name }}:latest"
2224 workflow : " build"
2325 token : ${{ secrets.GH_SL_ACCESS_TOKEN }}
2426 workflow_run_id : ${{ github.event.workflow_run.id }}
5557 run : |
5658 set -x
5759 export ZPC_RUN_MODE="docker"
58- export ZPC_COMMAND="docker run ${{ github.event.repository. name }}"
60+ export ZPC_COMMAND="docker run ${{ env.project- name }}"
5961 $ZPC_COMMAND --version
6062 docker-compose pull
6163 export ZPC_COMMAND="docker-compose up --abort-on-container-exit"
You can’t perform that action at this time.
0 commit comments