From 6655fad07deaeab1ad2435d838216e2d2c61a61f Mon Sep 17 00:00:00 2001 From: turupawn Date: Sat, 5 Dec 2020 10:43:26 +0000 Subject: [PATCH] fix3 --- .github/workflows/release.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 15149da..20afbbe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -99,6 +99,19 @@ jobs: CXXFLAGS: ${{ matrix.cxxflags || env.CXXFLAGS }} LDFLAGS: ${{ matrix.ldflags || env.LDFLAGS }} + - name: Prepare artifact + shell: bash + run: | + mkdir Release + mv librosalila* Release + mv *.lib Release + + - name: Upload artifact + uses: actions/upload-artifact@v1 + with: + name: JustTestin + path: Release + - name: Compile source code run: | cd ${{ matrix.build-src-dir || '.' }} @@ -119,19 +132,6 @@ jobs: runs-on: ubuntu-latest steps: - - name: Prepare artifact - if: runner.os == 'Linux' || runner.os == 'macOS' - shell: bash - run: | - mkdir Release - mv librosalila* Release - - - name: Upload artifact - uses: actions/upload-artifact@v1 - with: - name: JustTestin - path: Release - - name: Upload Release Asset id: upload-release-asset uses: actions/upload-release-asset@v1