Skip to content

Commit

Permalink
fix3
Browse files Browse the repository at this point in the history
  • Loading branch information
Turupawn committed Dec 5, 2020
1 parent a9c17a1 commit 6655fad
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 || '.' }}
Expand All @@ -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
Expand Down

0 comments on commit 6655fad

Please sign in to comment.