fix: 修改日志格式以更详细地记录获取视频预览信息和解析转码资源 URL 的错误 #111
This file contains hidden or 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: | |
| submodules: true | |
| 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 |