We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05ed7fb commit 8300716Copy full SHA for 8300716
.github/workflows/build.yml
@@ -21,7 +21,11 @@ jobs:
21
echo "describe=$(git describe --tags --always || echo 0)"
22
| tee $GITHUB_OUTPUT
23
- name: Build Docker image from sources
24
- run: docker build --tag "${{ env.project-name }}:latest" .
+ run: >
25
+ docker build
26
+ --tag "${{ env.project-name }}:latest"
27
+ -e UNIFYSDK_GIT_REPOSITORY=https://${{ secrets.GH_UNIFY_ACCESS_TOKEN }}@github.com/SiliconLabs/UnifySDK_test.git
28
+ .
29
- name: Extract artifacts
30
run: >-
31
container=$(docker create "${{ env.project-name }}:latest")
0 commit comments