diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml new file mode 100644 index 00000000..91e8616c --- /dev/null +++ b/.github/workflows/build-image.yml @@ -0,0 +1,42 @@ +name: build image and push + +on: + push: + branches: + - action + tags: + - '*' + +env: + MODEL_URL: https://github.com/Zeyi-Lin/HivisionIDPhotos/releases/download/pretrained-model/hivision_modnet.onnx + +jobs: + docker: + runs-on: ubuntu-latest + environment: release + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Download model + run: wget -O hivision_modnet.onnx ${{ vars.MODEL_URL || env.MODEL_URL }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ vars.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + + - name: Build and push + uses: docker/build-push-action@v6 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: true + tags: ${{ vars.IMAGE_NAME }}:${{ github.ref_type == 'tag' && github.ref_name || 'latest' }} \ No newline at end of file