Skip to content

Commit

Permalink
5
Browse files Browse the repository at this point in the history
  • Loading branch information
ed-asriyan committed Jul 1, 2023
1 parent 4ac5a6c commit 142eb99
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,28 @@ jobs:
echo Converting \${FILE}... && ./bin/lottie_to_${{ matrix.case }}.sh \${WIDTH:+--width \$WIDTH} \${HEIGHT:+--height \$HEIGHT} \${FPS:+--fps \$FPS} \${QUALITY:+--quality \$QUALITY} \$FILE && echo Done.; \
done
build-windows:
name: Build Windows executable
runs-on: windows-latest
steps:
- name: Install Conan
run: pip3 install conan==1.53.0

- uses: actions/checkout@v3

- name: Install conan dependencies
run: conan install --build=libpng --build=zlib .

- name: Build the app
run: cmake CMakeLists.txt && make

- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: lottie-to-png.win.amd64
path: bin/lottie_to_png

release:
needs:
- test-docker
Expand Down

0 comments on commit 142eb99

Please sign in to comment.