diff --git a/.github/workflows/build_linux.yml b/.github/workflows/build_linux.yml index 9f352ac4..6c6d01e9 100644 --- a/.github/workflows/build_linux.yml +++ b/.github/workflows/build_linux.yml @@ -18,4 +18,9 @@ jobs: cmake --build . - name: CheckBinaryName shell: bash - run: test -f build/bomberman \ No newline at end of file + run: test -f build/bomberman + - name: Archive production artifact for Linux binary + uses: actions/upload-artifact@v1 + with: + name: BombermanLinux + path: build/bomberman \ No newline at end of file diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index a3a21944..e228afe2 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -35,3 +35,8 @@ jobs: shell: bash if: matrix.name == 'Linux' run: test -f build/bomberman + - name: Archive production artifact for Windows binary + uses: actions/upload-artifact@v1 + with: + name: BombermanWindow + path: build/bomberman