Release 1.2.1

- Added Variable Bit Rate option
- Fixed cover art conversion issue
- Fixed file permission/owner issue
- Reworked some bash logic
- Updated documentation
This commit is contained in:
TheCaptain989
2021-03-11 13:47:19 -06:00
parent 9237e5bc91
commit f1fd4b229d
9 changed files with 191 additions and 66 deletions
+9 -1
View File
@@ -15,7 +15,15 @@ jobs:
- name: Build image
run: |
docker build --no-cache -t ${{ github.sha }} .
# Build variables
VERSION=$(git describe --tags --always)
cat <<EOF
Building version $VERSION
EOF
# Build image
docker build --build-arg VERSION=$VERSION \
--no-cache \
--tag ${{ github.sha }} .
- name: Tag image
if: ${{ github.ref == format('refs/heads/{0}-{1}', env.BASEIMAGE, env.MODNAME) }}
run: |