From 64bea95356b33ea3631d5453b24d6a5f7d55cf81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Remko=20Tron=C3=A7on?= Date: Wed, 12 Jun 2024 19:19:00 +0200 Subject: [PATCH] github: Package Linux binaries on macOS --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0968532..7b5cef9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: needs: build strategy: matrix: - os: [macos-13, ubuntu-22.04, windows-latest] + os: [macos-13, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 @@ -20,6 +20,10 @@ jobs: - run: make package if: runner.os != 'Windows' + - run: make package-linux + env: + TOOLCHAINS: swift + if: runner.os != 'Windows' - name: package (windows) run: |