From 5e08083b5a925e8647fc69c47c430524a359c7ac Mon Sep 17 00:00:00 2001 From: ouwou <26526779+ouwou@users.noreply.github.com> Date: Thu, 18 Nov 2021 02:02:28 -0500 Subject: copy msys2 dependencies to artifact --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to '.github/workflows/ci.yml') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6422cc..3399437 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,11 +39,17 @@ jobs: cmake -GNinja -Bbuild -DCMAKE_BUILD_TYPE=${{ matrix.buildtype }} cmake --build build + - name: Setup Artifact + run: | + mkdir build/artifactdir + cp *.exe "build/artifactdir" + cat "ci/deps.txt" | sed 's/\r$//' | xargs -I % cp /mingw64% build/artifactdir + - name: Upload build uses: actions/upload-artifact@v2 with: name: build-windows-msys2-${{ matrix.buildtype }} - path: ${{ runner.workspace }}/abaddon/build + path: build/artifactdir windows: name: windows-${{ matrix.buildtype }} -- cgit v1.2.3