From 17b62e096b5e93547ce24f8303aa6d2ba1ae4956 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Gro=C3=9F?= Date: Thu, 17 Aug 2023 13:32:04 +0200 Subject: [PATCH] Move config file to separate workflot step --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4da0ab0..4a0d9ca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,10 +21,15 @@ jobs: name: example preset: ${{ matrix.platform }} debugMode: "true" - - name: Upload Artifact + - name: Upload Build Artifact uses: actions/upload-artifact@v2 with: name: TohoReno-${{ matrix.platform }} path: | ${{ github.workspace }}/${{ steps.build.outputs.build }} + - name: Upload Example Config Artifact + uses: actions/upload-artifact@v2 + with: + name: TohoReno-${{ matrix.platform }} + path: | ${{ github.workspace }}/example-config.cfg \ No newline at end of file