File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 2323 echo "describe=$(git describe --tags --always || echo 0)"
2424 | tee $GITHUB_OUTPUT
2525 - name : Setup and build
26- run : |
27- ARCH=${{ matrix.arch }} ./scripts/build-rootfs.sh
26+ run : >-
27+ ARCH=${{ matrix.arch }}
28+ UNIFYSDK_GIT_REPOSITORY=${{ secrets.UNIFYSDK_GIT_REPOSITORY }}
29+ UNIFYSDK_GIT_TAG=${{ secrets.UNIFYSDK_GIT_TAG }}
30+ ./scripts/build-rootfs.sh
2831 - name : Upload artifacts
2932 uses : actions/upload-artifact@v4
3033 with :
Original file line number Diff line number Diff line change 2121 echo "describe=$(git describe --tags --always || echo 0)"
2222 | tee $GITHUB_OUTPUT
2323 - name : Build Docker image from sources
24- run : docker build --tag "${{ env.project-name }}:latest" .
24+ run : >-
25+ docker build
26+ --tag "${{ env.project-name }}:latest"
27+ --build-arg UNIFYSDK_GIT_REPOSITORY=${{ secrets.UNIFYSDK_GIT_REPOSITORY }}
28+ --build-arg UNIFYSDK_GIT_TAG=${{ secrets.UNIFYSDK_GIT_TAG }}
29+ .
2530 - name : Extract artifacts
2631 run : >-
2732 container=$(docker create "${{ env.project-name }}:latest")
You can’t perform that action at this time.
0 commit comments