diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ba6001f5..8d3b6a1d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -46,6 +46,12 @@ jobs: ./ParserTests ./ZoneCodeGeneratorLibTests ./ZoneCommonTests + - name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: oat-linux + path: | + ${{ github.workspace }}/build/bin/Release_x86 build-test-windows: env: @@ -80,4 +86,10 @@ jobs: ./ObjLoadingTests ./ParserTests ./ZoneCodeGeneratorLibTests - ./ZoneCommonTests \ No newline at end of file + ./ZoneCommonTests + - name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: oat-windows + path: | + ${{ github.workspace }}/build/bin/Release_x86 \ No newline at end of file