Skip to content

Commit

Permalink
Update sdkAutomation.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniloMilenkovic authored Nov 20, 2024
1 parent db7aa8f commit aebb514
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/sdkAutomation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -239,17 +239,17 @@ jobs:
# Aquire the asset that we just generated with the sdk_automation script
- name: Fetch asset
if: steps.check-asset-existence.outcome != 'success'
run: gh release download --repo MikroElektronika/sdk_automation latest --pattern 'generated_files_${{ steps.upper-mcu-name.outputs. }}.zip'
run: gh release download --repo MikroElektronika/sdk_automation latest --pattern 'generated_files_${{ steps.upper-mcu-name.outputs.mcu_name }}.zip'
env:
GH_TOKEN: ${{ secrets.MIKROE_ACTIONS_KEY }}

# Move the asset we just downloaded to automatization and extract it
- name: Move to the created directory unzip and distribute files
id: move_files
run: |
sudo mv generated_files_${{ steps.upper-mcu-name.outputs. }}.zip automatization/
sudo mv generated_files_${{ steps.upper-mcu-name.outputs.mcu_name }}.zip automatization/
cd automatization
unzip generated_files_${{ steps.upper-mcu-name.outputs. }}.zip
unzip generated_files_${{ steps.upper-mcu-name.outputs.mcu_name }}.zip
mkdir -p ../${{ github.event.inputs.architecture }}/gcc_clang/def/${{ github.event.inputs.vendor }}/${{ steps.upper-mcu-name.outputs.mcu_name }}
mkdir -p ../${{ github.event.inputs.architecture }}/gcc_clang/interrupts/include/interrupts_mcu/${{ steps.upper-mcu-name.outputs.mcu_name }}
Expand Down

0 comments on commit aebb514

Please sign in to comment.