Skip to content

Commit 91d19da

Browse files
committed
workflow: fix incremental versions (missing v prefix)
1 parent baffbad commit 91d19da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: 'Release debian files'
5555
uses: ncipollo/release-action@v1
5656
with:
57-
tag: ${{ env.GIT_VERSION }}
57+
tag: "v${{ env.GIT_VERSION }}"
5858
artifacts: "deb/*.deb"
5959
allowUpdates: true
6060
omitBodyDuringUpdate: true

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if [[ -e /etc/default/raspberrypi-kernel ]]; then
2121
else
2222
PACKAGE=camera-streamer-generic_#{GIT_VERSION}.bullseye_$(dpkg --print-architecture).deb
2323
fi
24-
wget "https://github.com/ayufan/camera-streamer/releases/download/#{GIT_VERSION}/$PACKAGE"
24+
wget "https://github.com/ayufan/camera-streamer/releases/download/v#{GIT_VERSION}/$PACKAGE"
2525
sudo apt install "$PWD/$PACKAGE"
2626
```
2727

0 commit comments

Comments
 (0)