Skip to content

Commit

Permalink
Fix workflow again. (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurSonzogni authored Oct 17, 2021
1 parent 8f5ffea commit 7af88f5
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,10 @@ jobs:
- uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ needs.release.outputs.upload_url }}
asset_path: build/ftxui-*
asset_path:
- build/ftxui-*-Darwin.*
- build/ftxui-*-Linux.*
- build/ftxui-*-Win64.*
overwrite: true

documentation:
Expand Down Expand Up @@ -147,13 +150,8 @@ jobs:
cd build;
emcmake cmake ..;
cmake --build . --target doc;
rsync -amv
--include='*/'
--include='*.html'
--include='*.js'
--include='*.wasm'
--exclude='*'
examples doc/doxygen/html;
rsync -amv --include='*/' --include='*.html' --include='*.js' --include='*.wasm' --exclude='*' examples doc/doxygen/html;
- name: "Deploy"
uses: peaceiris/actions-gh-pages@v3
Expand Down

0 comments on commit 7af88f5

Please sign in to comment.