Skip to content

Commit

Permalink
fix env variable path
Browse files Browse the repository at this point in the history
  • Loading branch information
mykrupp committed Sep 24, 2024
1 parent acfd99c commit a7ddd2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-pr-efr32.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ jobs:
- name: Set up environment variables and move extension to its proper location
run: |
echo "simplicitySdkPath=${SISDK_ROOT}" >> $GITHUB_ENV
mkdir -p ${{SISDK_ROOT}}/extension
mkdir -p ${SISDK_ROOT}/extension
cd ..
cp -r matter_extension ${{SISDK_ROOT}}/extension
cp -r matter_extension ${SISDK_ROOT}/extension
echo "matterExtensionPath=${SISDK_ROOT}extension/matter_extension" >> $GITHUB_ENV
echo "STUDIO_ADAPTER_PACK_PATH=/opt/silabs/zap-linux-x64" >> $GITHUB_ENV
# TODO unnecessary copy of matter_extension to simplicity_sdk
Expand Down

0 comments on commit a7ddd2f

Please sign in to comment.