Skip to content

Commit

Permalink
Merge pull request #5 from jeertmans/reserve-video-and-more
Browse files Browse the repository at this point in the history
feat(cli): reverse videos on the fly!
  • Loading branch information
jeertmans authored Sep 7, 2022
2 parents 574c545 + ac486f4 commit e7c2bcf
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,46 @@ on:
types: [published]

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2

# Used to host cibuildwheel
- uses: actions/setup-python@v2

- name: Install deps
run: sudo apt-get install libsdl-pango-dev

- name: Install packages
run: python -m pip install -U manim tqdm

- name: Install cibuildwheel
run: python -m pip install -U setuptools wheel pip

- name: Build wheels
run: python setup.py sdist

- uses: actions/upload-artifact@v2
with:
name: dist
path: dist/*.tar.*

release:
name: Release
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
needs: [ build_wheels ]
steps:
- uses: actions/download-artifact@v2
with:
name: dist
path: dist/
- name: Upload to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
Expand Down

0 comments on commit e7c2bcf

Please sign in to comment.