Skip to content

Commit

Permalink
fix(build): Tweaked working-directory for tmp dir.
Browse files Browse the repository at this point in the history
  • Loading branch information
petejohanson committed Nov 25, 2023
1 parent b46e7d0 commit fd9ba46
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-user-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,17 +103,21 @@ jobs:
${{ runner.os }}-
- name: West Init
working-directory: ${{ env.tmp_dir }}
run: west init -l "${{ env.tmp_config_dir }}"

- name: West Update
working-directory: ${{ env.tmp_dir }}
run: west update

- name: West Zephyr export
working-directory: ${{ env.tmp_dir }}
run: west zephyr-export

- name: West Build (${{ env.display_name }})
working-directory: ${{ env.tmp_dir }}
shell: sh -x {0}
run: west build -s ${{ env.tmp_dir }}/zmk/app -d "${{ env.build_dir }}" -b "${{ matrix.board }}" -- -DZMK_CONFIG=${{ env.tmp_config_dir }} ${{ env.extra_cmake_args }} ${{ matrix.cmake-args }}
run: west build -s zmk/app -d "${{ env.build_dir }}" -b "${{ matrix.board }}" -- -DZMK_CONFIG=${{ env.tmp_config_dir }} ${{ env.extra_cmake_args }} ${{ matrix.cmake-args }}

- name: ${{ env.display_name }} Kconfig file
run: |
Expand Down

0 comments on commit fd9ba46

Please sign in to comment.