From bac8cc4d4ee0bb7d13effafb66d7e2191234bfa1 Mon Sep 17 00:00:00 2001 From: Anton Date: Sun, 14 Jan 2024 19:38:53 -0600 Subject: [PATCH] Downgrade ubuntu version --- .github/workflows/release.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9607a5b..8fc1c7f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,6 +1,9 @@ on: release: types: [created] + push: + branches: + - master env: CARGO_TERM_COLOR: always @@ -34,16 +37,16 @@ jobs: build: needs: compile_windows - runs-on: ${{ matrix.os }}-latest + runs-on: ${{ matrix.os }} strategy: matrix: include: - - os: ubuntu + - os: ubuntu-20.04 cargoargs: --features build-llvm - - os: macos + - os: macos-latest cargoargs: --features build-llvm - - os: windows + - os: windows-latest cargoargs: '' steps: