Skip to content

Commit

Permalink
It should now probably release every day
Browse files Browse the repository at this point in the history
I just renamed ffmpeg- into ffmpeg_vvceasy- for recognize my custom builds, not to confuse vanilla binary executable names.

- Martin Eesmaa
  • Loading branch information
MartinEesmaa committed Oct 15, 2024
1 parent 2fa6c72 commit 5b7505f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ffmpeg-${{ steps.strs.outputs.artifact_slug }}
name: ffmpeg_vvceasy-${{ steps.strs.outputs.artifact_slug }}
overwrite: true
path: artifacts/*
publish_release:
Expand All @@ -271,7 +271,7 @@ jobs:
- name: Download artifacts
uses: actions/download-artifact@v4
with:
pattern: ffmpeg-*
pattern: ffmpeg_vvceasy-*
merge-multiple: true
path: artifacts
- name: Create release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: ffmpeg-${{ steps.strs.outputs.artifact_slug }}
name: ffmpeg_vvceasy-${{ steps.strs.outputs.artifact_slug }}
overwrite: true
path: artifacts/*
6 changes: 3 additions & 3 deletions util/repack_latest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ while [[ $# -gt 0 ]]; do

cd "$REPACK_DIR"

INAME="$(echo ffmpeg-*)"
INAME="$(echo ffmpeg_vvceasy-*)"
TAGNAME="$(cut -d- -f2 <<<"$INAME")"

if [[ $TAGNAME == N ]]; then
Expand All @@ -45,9 +45,9 @@ while [[ $# -gt 0 ]]; do
fi

if [[ "$INAME" =~ -[0-9]+-g ]]; then
ONAME="ffmpeg-$TAGNAME-latest-$(cut -d- -f5- <<<"$INAME")"
ONAME="ffmpeg_vvceasy-$TAGNAME-latest-$(cut -d- -f5- <<<"$INAME")"
else
ONAME="ffmpeg-$TAGNAME-latest-$(cut -d- -f3- <<<"$INAME")"
ONAME="ffmpeg_vvceasy-$TAGNAME-latest-$(cut -d- -f3- <<<"$INAME")"
fi

mv "$INAME" "$ONAME"
Expand Down

0 comments on commit 5b7505f

Please sign in to comment.