From 0a68e6487572512422b854411aa61f1aba4d2ad8 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 19 Oct 2025 00:07:20 +0100 Subject: [PATCH] ci(publish): fix asset publishing (#13) --- .github/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b5dbb7..1ae67c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,8 +25,11 @@ jobs: steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: Publish Resources to GitHub Release - run: >- - find Resources -name 'Assets.car' -or -name '*.icns' -print0 - | xargs -0 gh release upload ${{ github.ref_name }} + run: | + gh release upload ${{ github.ref_name }} \ + Resources/Assets.car \ + LICENSE.md + find Resources -name '*.icns' -print0 \ + | xargs -0 gh release upload ${{ github.ref_name }} \ env: GH_TOKEN: ${{ github.token }}