Skip to content

Commit

Permalink
Feat/output fmt (#35)
Browse files Browse the repository at this point in the history
* updating the formatting

* doc update

* version bump

* fix workflow
  • Loading branch information
LemurPwned authored Oct 22, 2024
1 parent 6b28fe7 commit e04a460
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,12 @@ jobs:
python -m pip install --upgrade pip
python -m pip install flit
flit install --deps production
- name: Get release version
id: get_version
run: |
echo "version=$(cat pyproject.toml | grep version | awk '{print $3}' | tr -d \"\\\"\")" >> $GITHUB_OUTPUT
- name: Build
run: |
flit build
Expand All @@ -40,11 +45,6 @@ jobs:
FLIT_USERNAME: __token__
FLIT_PASSWORD: ${{ secrets.PYPI_KEY }}

- name: Get release version
id: get_version
run: |
echo "version=$(cat pyproject.toml | grep version | awk '{print $3}' | tr -d \"'\")" >> $GITHUB_OUTPUT
release:
needs: build
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "video_sampler"
description = "Video Sampler -- sample frames from a video file"
url = "https://github.com/LemurPwned/video-sampler"
version = "0.11.3"
version = "0.11.4"
authors = [
{ name = "LemurPwned", email = "[email protected]" }
]
Expand Down

0 comments on commit e04a460

Please sign in to comment.