fix: use own release instance
All checks were successful
Continuous Integration / Lint, Check & Test (push) Successful in 1m45s
Continuous Integration / Build Package (push) Successful in 1m58s

This commit is contained in:
Konstantin Fickel 2026-04-03 14:57:57 +02:00
parent 16218a8da7
commit 9b74f13155
Signed by: kfickel
GPG key ID: A793722F9933C1A5

View file

@ -59,26 +59,11 @@ jobs:
cp result-musl/bin/streamd release/streamd-${{ steps.version.outputs.VERSION }}-linux-x86_64 cp result-musl/bin/streamd release/streamd-${{ steps.version.outputs.VERSION }}-linux-x86_64
- name: Create release - name: Create release
uses: https://code.forgejo.org/actions/forgejo-release@v2 uses: https://git.konstantinfickel.de/actions/forgejo-release@v2
with: with:
direction: upload direction: upload
url: https://git.konstantinfickel.de url: https://git.konstantinfickel.de/
repo: kfickel/streamd repo: kfickel/streamd
token: ${{ secrets.RELEASE_TOKEN }} token: ${{ secrets.RELEASE_TOKEN }}
tag: ${{ steps.version.outputs.TAG }} tag: ${{ steps.version.outputs.TAG }}
release-dir: release release-dir: release
release-notes: |
## streamd ${{ steps.version.outputs.VERSION }}
### Debian/Ubuntu
```bash
wget <release-url>/streamd_${{ steps.version.outputs.VERSION }}_amd64.deb
sudo dpkg -i streamd_${{ steps.version.outputs.VERSION }}_amd64.deb
```
### Static binary
```bash
wget <release-url>/streamd-${{ steps.version.outputs.VERSION }}-linux-x86_64
chmod +x streamd-*-linux-x86_64
sudo mv streamd-*-linux-x86_64 /usr/local/bin/streamd
```