workflow: fix incremental versions (missing v prefix)

This commit is contained in:
Kamil Trzcinski
2023-06-01 19:00:40 +02:00
parent baffbad1cf
commit e3a4d2768f
2 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@ if [[ -e /etc/default/raspberrypi-kernel ]]; then
else
PACKAGE=camera-streamer-generic_#{GIT_VERSION}.bullseye_$(dpkg --print-architecture).deb
fi
wget "https://github.com/ayufan/camera-streamer/releases/download/#{GIT_VERSION}/$PACKAGE"
wget "https://github.com/ayufan/camera-streamer/releases/download/v#{GIT_VERSION}/$PACKAGE"
sudo apt install "$PWD/$PACKAGE"
```