diff --git a/.github/workflows/build_prod_exe.yml b/.github/workflows/build_prod_exe.yml index f7170de..9db32cb 100644 --- a/.github/workflows/build_prod_exe.yml +++ b/.github/workflows/build_prod_exe.yml @@ -1,8 +1,9 @@ name: Build and Publish Compute Releases on: - release: - types: [published] + push: + branches: + - build-ubuntu-20-04 permissions: contents: write @@ -14,11 +15,11 @@ jobs: strategy: matrix: include: - - { runner: macos-latest, osname: macOS, arch: amd64, target: x86_64-apple-darwin, command: build } - - { runner: macos-latest, osname: macOS, arch: arm64, target: aarch64-apple-darwin, command: build } - - { runner: ubuntu-latest, osname: linux, arch: amd64, target: x86_64-unknown-linux-gnu, command: build } - - { runner: ubuntu-latest, osname: linux, arch: arm64, target: aarch64-unknown-linux-gnu, command: build, build_args: --no-default-features } - - { runner: windows-latest, osname: windows, arch: amd64, target: x86_64-pc-windows-msvc, command: build, extension: ".exe" } + # - { runner: macos-latest, osname: macOS, arch: amd64, target: x86_64-apple-darwin, command: build } + # - { runner: macos-latest, osname: macOS, arch: arm64, target: aarch64-apple-darwin, command: build } + - { runner: ubuntu-20.04, osname: linux, arch: amd64, target: x86_64-unknown-linux-gnu, command: build } + - { runner: ubuntu-20.04, osname: linux, arch: arm64, target: aarch64-unknown-linux-gnu, command: build, build_args: --no-default-features } + # - { runner: windows-latest, osname: windows, arch: amd64, target: x86_64-pc-windows-msvc, command: build, extension: ".exe" } # - { runner: windows-latest, osname: windows, arch: arm64, target: aarch64-pc-windows-msvc, command: build, extension: ".exe", toolchain: nightly } steps: