Skip to content

Commit

Permalink
Auto build ab-av1.exe releases (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexheretic authored Nov 28, 2022
1 parent 202faf9 commit 2091c54
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release

on:
push:
tags:
- '*'

jobs:
win-bin:
name: Build Windows binary
runs-on: windows-latest
steps:
- run: rustup update stable
- uses: actions/checkout@v2
- run: cargo build --release --locked
- uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/release/ab-av1.exe
tag: ${{ github.ref }}
overwrite: true
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* Eliminate repeated redundant ffprobe calls.
* Windows: Support VMAF pixel format conversion for both distorted and reference.
Gives more consistently accurate results and brings Windows in line with Linux functionality.
* Windows: ab-av1.exe binaries will now be automatically built and attached to releases.

# v0.4.4
* Add _crf-search_, _auto-encode_, _encode_ & _vmaf_ command support for encoding images into avif.
Expand Down

0 comments on commit 2091c54

Please sign in to comment.