From 395970a183e8587b27ad35071b98738ccd6afc2e Mon Sep 17 00:00:00 2001 From: John Chadwick Date: Sun, 21 Jul 2024 20:38:11 -0400 Subject: [PATCH] Use MinGW32 in release workflow --- .github/workflows/release.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d999069..e5c6d66 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,11 +10,12 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Compile - id: compile - uses: pangbox/openwatcom-action@master + - name: Install Nix + uses: cachix/install-nix-action@v19 with: - target: all + nix_path: nixpkgs=channel:nixos-unstable + - name: Compile + run: nix develop --command make -j8 all - name: Create Release id: create_release uses: actions/create-release@v1