From af92e0dca41bf59ff435038c10efe01d96964437 Mon Sep 17 00:00:00 2001 From: Adam Boutcher Date: Fri, 13 Aug 2021 17:24:01 +0100 Subject: [PATCH] Add missing directory in workflow, maybe? --- .github/workflows/development.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index 9e190270..3355b69f 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -121,6 +121,7 @@ jobs: - name: Compress Linux Builds if: matrix.platform == 'linux' run: | + mkdir build cd build mv statping-linux-${{ matrix.arch }} statping chmod +x statping @@ -131,6 +132,7 @@ jobs: - name: Compress Windows Builds if: matrix.platform == 'windows' run: | + mkdir build cd build mv statping-windows-4.0-${{ matrix.arch }}.exe statping.exe chmod +x statping.exe @@ -141,6 +143,7 @@ jobs: - name: Compress Darwin Builds if: matrix.platform == 'darwin' run: | + mkdir build cd build mv statping-darwin-10.6-${{ matrix.arch }} statping chmod +x statping