Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,13 +213,15 @@ runs:
shell: bash
run: |
wget --progress=dot:giga ${{ inputs.sdk-base }}/v${SDK_VERSION}/${SDK_FILE}
rm -rf zephyr-sdk
if [ "${{ runner.os }}" = "Windows" ]; then
7z x $SDK_FILE
mv zephyr-sdk-${SDK_VERSION} zephyr-sdk
else
mkdir zephyr-sdk
tar xvf $SDK_FILE -C zephyr-sdk --strip-components=1
fi
rm -f $SDK_FILE

- name: Setup Zephyr SDK
working-directory: ${{ inputs.base-path }}/zephyr-sdk
Expand Down
Loading