From aade3b9cbce4c8483ff7527818850720d36d2230 Mon Sep 17 00:00:00 2001 From: Nicolas Delsaux Date: Sun, 11 Jun 2023 15:30:00 +0200 Subject: [PATCH] How the hell could it work??? --- .github/workflows/on_release_created.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/on_release_created.yml b/.github/workflows/on_release_created.yml index 6df5f2f..77d57fc 100644 --- a/.github/workflows/on_release_created.yml +++ b/.github/workflows/on_release_created.yml @@ -14,11 +14,11 @@ jobs: matrix: config: # See https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners - - { os: ubuntu-latest, name: rrss2imap_linux, path: target/debug/rrss2imap} - - { os: macOS-latest, name: rrss2imap_macOS, path: target/debug/rrss2imap} - - { os: windows-latest, name: rrss2imap.exe, path: target/debug/rrss2imap.exe} + - { os: ubuntu-latest, name: rrss2imap_linux, path: target/release/rrss2imap} + - { os: macOS-latest, name: rrss2imap_macOS, path: target/release/rrss2imap} + - { os: windows-latest, name: rrss2imap.exe, path: target/release/rrss2imap.exe} # And this one is the dreaded Raspbian one ... - - { os: ubuntu-latest, name: rrss2imap_raspbian, path: target/armv7-unknown-linux-gnueabihf/debug/rrss2imap, target: armv7-unknown-linux-gnueabihf, linker: gcc-arm-linux-gnueabihf} + - { os: ubuntu-latest, name: rrss2imap_raspbian, path: target/armv7-unknown-linux-gnueabihf/release/rrss2imap, target: armv7-unknown-linux-gnueabihf, linker: gcc-arm-linux-gnueabihf} steps: - name: Install linker run: sudo apt-get update && sudo apt-get install ${{matrix.config.linker}}