From 88d0bbdb81ef873083c7a63324be0b8974bfd191 Mon Sep 17 00:00:00 2001 From: NovaSquirrel Date: Sat, 13 Nov 2021 13:19:27 -0500 Subject: [PATCH] Try setting up uploading Linux builds? --- .github/workflows/linux-build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index 530659f8..251620a3 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -2,7 +2,7 @@ name: "Linux build" on: push jobs: - win-build: + linux-build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -13,8 +13,8 @@ jobs: - name: Build run: | make - # - name: Upload binary - # uses: actions/upload-artifact@v1 - # with: - # name: Mesen-win - # path: bin/Any CPU/Release/Mesen.exe \ No newline at end of file + - name: Upload binary + uses: actions/upload-artifact@v1 + with: + name: Mesen-Linux + path: bin/x64/Release/Mesen.exe \ No newline at end of file