diff --git a/.github/workflows/action_test.yml b/.github/workflows/action_test.yml index 8f62200..494400d 100644 --- a/.github/workflows/action_test.yml +++ b/.github/workflows/action_test.yml @@ -96,6 +96,7 @@ jobs: # #---------------------------------------------------------------------------------------------- # Test makeProject action - name: TestMake + id: make_logs uses: Analog-Devices-MSDK/btm-ci-scripts/actions/make-project@actions-update with: project: BLE5_ctr @@ -104,11 +105,17 @@ jobs: msdk_path: ${{ github.workspace }} create_buildlog: true # #---------------------------------------------------------------------------------------------- + # Test makeProject output + - name: TestMake_output + run: | + echo "LOG DIR -- ${{ steps.make_logs.outputs.log_directory }}" + ls ${{ steps.make_logs.outputs.log_directory }} + # #---------------------------------------------------------------------------------------------- # Test OCDFlash action - name: TestFlash uses: Analog-Devices-MSDK/btm-ci-scripts/actions/ocdflash@actions-update with: - board: | + boards: | max32655_board1 project: | BLE5_ctr diff --git a/actions/make-project/action.yml b/actions/make-project/action.yml index f966c6a..ec3ac96 100644 --- a/actions/make-project/action.yml +++ b/actions/make-project/action.yml @@ -29,6 +29,9 @@ inputs: description: 'Used to create a build logfile.' required: false default: 'false' +outputs: + log_directory: + description: 'Logfile save directory path' runs: using: 'node20' main: 'index.js'