Skip to content

Commit

Permalink
fix an error - can't upload artifact in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
alexchicn committed Oct 14, 2020
1 parent 102c50b commit bed737b
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions .github/workflows/buildwithdraco.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ jobs:
uses: actions/upload-artifact@v1.0.0
with:
name: libgltf.linux
path: |
output/include/
output/lib/
path: output/
macos:
name: 'for macos'
runs-on: macos-latest
Expand All @@ -58,9 +56,7 @@ jobs:
uses: actions/upload-artifact@v1.0.0
with:
name: libgltf.macos
path: |
output/include/
output/lib/
path: output/
ios:
name: 'for ios'
runs-on: macos-latest
Expand Down Expand Up @@ -92,9 +88,7 @@ jobs:
uses: actions/upload-artifact@v1.0.0
with:
name: libgltf.ios
path: |
output/include/
output/lib/
path: output/
windows:
name: 'for windows'
runs-on: windows-latest
Expand Down Expand Up @@ -125,5 +119,4 @@ jobs:
uses: actions/upload-artifact@v1.0.0
with:
name: libgltf.windows
path: |
output/
path: output/

0 comments on commit bed737b

Please sign in to comment.