From 67aa785a9e285f9fec81884a7d6632ad5cd81ae8 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 17 Feb 2024 14:38:35 +0000 Subject: [PATCH] ci: build deltachat-repl for Windows with nix --- .github/workflows/repl.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/repl.yml b/.github/workflows/repl.yml index a29e45452..0b8f38985 100644 --- a/.github/workflows/repl.yml +++ b/.github/workflows/repl.yml @@ -10,17 +10,17 @@ on: jobs: build_repl: name: Build REPL example - runs-on: windows-latest + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 with: show-progress: false - + - uses: DeterminateSystems/nix-installer-action@main + - uses: DeterminateSystems/magic-nix-cache-action@main - name: Build - run: cargo build -p deltachat-repl --features vendored - + run: nix build .#deltachat-repl-win64 - name: Upload binary uses: actions/upload-artifact@v4 with: name: repl.exe - path: "target/debug/deltachat-repl.exe" + path: "result/bin/deltachat-repl.exe"