Skip to content

Commit

Permalink
build(ci): fix version env vars using numeric not string type
Browse files Browse the repository at this point in the history
* Causes issues with like converting 5.0 to 5 for version strings
  • Loading branch information
exwm committed Jan 23, 2022
1 parent c7fd4f1 commit b1c0cd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/yt_clipper_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ on:
# Can work around to some degree using set-env
env:
NAME: yt_clipper
VERSION: 5.6.0
FFMPEG_VERSION: 5.0
VERSION: "5.6.0"
FFMPEG_VERSION: "5.0"
FFMPEG_DL_PREFIX: https://github.com/exwm/yt_clipper_bindeps/releases/download

jobs:
Expand Down

0 comments on commit b1c0cd0

Please sign in to comment.