aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorPete Johanson <[email protected]>2023-11-13 16:50:00 -0500
committerPete Johanson <[email protected]>2023-11-13 13:51:08 -0800
commitafe65ead9c0f1418fa34bfa93325d0cce33c6c2c (patch)
tree3d65290a9705ba3bb10fd215db3767e9f1fc211b /.github
parent964c54139dcc5fca466eb2a6dc72b4092c7152a0 (diff)
downloadzmk-afe65ead9c0f1418fa34bfa93325d0cce33c6c2c.tar.gz
zmk-afe65ead9c0f1418fa34bfa93325d0cce33c6c2c.zip
Revert "feat(build): Add support for artifact-name in build.yaml"
This reverts commit c1bf35ce1de4b7d99c034300c9a813a0a3d11669.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-user-config.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/build-user-config.yml b/.github/workflows/build-user-config.yml
index 5aacadca90..c1a97b4d6e 100644
--- a/.github/workflows/build-user-config.yml
+++ b/.github/workflows/build-user-config.yml
@@ -55,14 +55,12 @@ jobs:
- name: Prepare variables
shell: sh -x {0}
env:
- board: ${{ matrix.board }}
shield: ${{ matrix.shield }}
- artifact_name: ${{ matrix.artifact-name }}
run: |
echo "zephyr_version=${ZEPHYR_VERSION}" >> $GITHUB_ENV
echo "extra_cmake_args=${shield:+-DSHIELD=\"$shield\"}" >> $GITHUB_ENV
- echo "display_name=${shield:+$shield - }${board}" >> $GITHUB_ENV
- echo "artifact_name=${artifact_name:-\"${shield:+$shield-}${board}-zmk\"}" >> $GITHUB_ENV
+ echo "display_name=${shield:+$shield - }${{ matrix.board }}" >> $GITHUB_ENV
+ echo "artifact_name=${shield:+$shield-}${{ matrix.board }}-zmk" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v3