fix: 避免当 MediaStreams 为空数组的情况移除该字段导致导致部分客户端报错 #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MediaWarp DEV | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- '**.go' | |
- 'go.mod' | |
- 'go.sum' | |
jobs: | |
builder: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" # 使用 go.mod 文件中的 golang 版本 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
distribution: goreleaser | |
version: '~> v2' | |
args: release --snapshot --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# - name: Push Dev Docker Image | |
# run: | | |
# docker images akimio/mediawarp | |
# VERSION=$(docker images akimio/mediawarp | grep -oP 'akimio/mediawarp\s+\K[^\s]+(?=-amd64)') | |
# echo $VERSION | |
# IMAGE_NAME="akimio/mediawarp" | |
# docker manifest create ${IMAGE_NAME}:${VERSION} \ | |
# ${IMAGE_NAME}:${VERSION}-amd64 \ | |
# ${IMAGE_NAME}:${VERSION}-arm64 \ | |
# ${IMAGE_NAME}:${VERSION}-armv6 \ | |
# ${IMAGE_NAME}:${VERSION}-armv7 | |
# docker manifest annotate ${IMAGE_NAME}:${VERSION} ${IMAGE_NAME}:${VERSION}-amd64 --arch amd64 | |
# docker manifest annotate ${IMAGE_NAME}:${VERSION} ${IMAGE_NAME}:${VERSION}-arm64 --arch arm64 | |
# docker manifest annotate ${IMAGE_NAME}:${VERSION} ${IMAGE_NAME}:${VERSION}-armv7 --arch arm --variant v7 | |
# docker manifest annotate ${IMAGE_NAME}:${VERSION} ${IMAGE_NAME}:${VERSION}-armv6 --arch arm --variant v6 | |
# docker manifest push ${IMAGE_NAME}:${VERSION} | |
- name: Upload assets | |
uses: actions/upload-artifact@v4 | |
with: | |
path: | | |
./dist/*.zip | |
./dist/*.tar.gz | |
./dist/*.json | |
./dist/*.yaml |