From 66a78f9f9df7d8150448bb3b54619d7ea6d2c1e2 Mon Sep 17 00:00:00 2001 From: "Panagiotis \"Ivory\" Vasilopoulos" Date: Fri, 7 Jun 2024 22:22:28 +0200 Subject: [PATCH] CI: Try again --- .github/workflows/ci.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 440e2e11..9cfb29da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -141,9 +141,11 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: - - ubuntu-latest - - macos-latest + include: + - os: ubuntu-latest + asset_name: "uhyve-${{ github.ref_name }}-linux-amd64" + - os: macos-latest + asset_name: uhyve-${{ github.ref_name }}-macos-amd64 steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable @@ -156,8 +158,9 @@ jobs: with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: target/release/uhyve* + asset_name: ${{ matrix.asset_name }} tag: ${{ github.ref }} - asset_name: "uhyve-${{ github.ref_name }}-${{ matrix.os }}" + title: "Uhyve ${{ github.ref_name }}" draft: true overwrite: true file_glob: true \ No newline at end of file