Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
set-git-config: true

- name: Install Dependencies
run: |

Check failure on line 40 in .github/workflows/build-and-release.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/build-and-release.yml#L40

shellcheck reported issue in this script: SC2046:warning:3:93: Quote this to prevent word splitting [shellcheck]
Raw output
.github/workflows/build-and-release.yml:40:9: shellcheck reported issue in this script: SC2046:warning:3:93: Quote this to prevent word splitting [shellcheck]
sudo apt-get update
if [ "${{ matrix.arch }}" == "arm64" ]; then
sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu libc6-dev-arm64-cross $(if [ "${{ matrix.os }}" = "ubuntu24.04" ]; then echo "libstdc++-13-dev-arm64-cross"; fi) libstdc++-12-dev-arm64-cross
Expand Down Expand Up @@ -404,6 +404,8 @@
name: Release
needs: [build-linux, build-darwin, build-windows]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Download Build Artifacts for linux/amd64
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # actions/download-artifact@v4.1.8
Expand Down
Loading