We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
v
1 parent baffbad commit 91d19daCopy full SHA for 91d19da
.github/workflows/build_release.yaml
@@ -54,7 +54,7 @@ jobs:
54
- name: 'Release debian files'
55
uses: ncipollo/release-action@v1
56
with:
57
- tag: ${{ env.GIT_VERSION }}
+ tag: "v${{ env.GIT_VERSION }}"
58
artifacts: "deb/*.deb"
59
allowUpdates: true
60
omitBodyDuringUpdate: true
RELEASE.md
@@ -21,7 +21,7 @@ if [[ -e /etc/default/raspberrypi-kernel ]]; then
21
else
22
PACKAGE=camera-streamer-generic_#{GIT_VERSION}.bullseye_$(dpkg --print-architecture).deb
23
fi
24
-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"
25
sudo apt install "$PWD/$PACKAGE"
26
```
27
0 commit comments