From 2a7388b4903bcb7917211a382cdd4fe9f9445c79 Mon Sep 17 00:00:00 2001 From: Jan Date: Sun, 18 Jun 2023 14:54:13 +0200 Subject: [PATCH] Upload artifacts after ci --- .github/workflows/ci.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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