diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2216edf..ac30396 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -44,5 +44,6 @@ jobs: uses: docker/build-push-action@v3 with: push: true -# platforms: [linux/amd64,] + manifest: ./manifest.yml + platforms: linux/amd64,linux/arm64 tags: xiaomoinfo/wechatgpt-amd64:latest diff --git a/.github/workflows/manifest.yml b/.github/workflows/manifest.yml new file mode 100644 index 0000000..60029ba --- /dev/null +++ b/.github/workflows/manifest.yml @@ -0,0 +1,9 @@ +image: wechatgpt +architectures: + - amd64 + - arm64 + - arm +tags: + - latest + - amd64-latest + - arm64-latest \ No newline at end of file