fix: Docker 版本无pg支持 #64
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: Docker Image Testing CI | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| env: | |
| APP_NAME: Qexo | |
| DOCKERHUB_REPO: abudulin/qexo | |
| jobs: | |
| docker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| - | |
| name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - | |
| name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - | |
| name: Update QEMU | |
| run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes -c yes | |
| - | |
| name: Login to DockerHub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - | |
| name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - | |
| name: Login to CNB Cool Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: docker.cnb.cool | |
| username: cnb | |
| password: ${{ secrets.CNB_PASSWORD }} | |
| - | |
| name: Generate App Version | |
| run: echo APP_VERSION=`git rev-parse --short HEAD 2>/dev/null` >> $GITHUB_ENV | |
| - | |
| name: Build and push | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: . | |
| platforms: | | |
| linux/386 | |
| linux/amd64 | |
| linux/arm64 | |
| # linux/ppc64le # Too slow to build.... | |
| # linux/s390x | |
| # linux/arm/v6 | |
| # linux/arm/v7 | |
| push: true | |
| build-args: | | |
| APP_NAME=${{ env.APP_NAME }} | |
| APP_VERSION=${{ env.APP_VERSION }} | |
| tags: | | |
| ${{ env.DOCKERHUB_REPO }}:testing | |
| ghcr.io/qexo/qexo:testing | |
| docker.cnb.cool/qexo/qexo:testing | |
| ${{ env.DOCKERHUB_REPO }}:${{ env.APP_VERSION }} | |
| ghcr.io/qexo/qexo:${{ env.APP_VERSION }} | |
| docker.cnb.cool/qexo/qexo:${{ env.APP_VERSION }} |