docker-image.yml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # This is a basic workflow to help you get started with Actions
  2. name: build docker image
  3. # Controls when the action will run.
  4. on:
  5. push:
  6. branches:
  7. - main
  8. # Allows you to run this workflow manually from the Actions tab
  9. # 可以手动触发
  10. workflow_dispatch:
  11. inputs:
  12. logLevel:
  13. description: 'Log level'
  14. required: true
  15. default: 'warning'
  16. tags:
  17. description: 'Test scenario tags'
  18. jobs:
  19. buildx:
  20. runs-on: ubuntu-latest
  21. steps:
  22. - name: Checkout
  23. uses: actions/checkout@v2
  24. - name: Get current date
  25. id: date
  26. run: echo "::set-output name=today::$(date +'%Y-%m-%d_%H-%M')"
  27. - name: Set up QEMU
  28. uses: docker/setup-qemu-action@v1
  29. - name: Set up Docker Buildx
  30. id: buildx
  31. uses: docker/setup-buildx-action@v1
  32. - name: Available platforms
  33. run: echo ${{ steps.buildx.outputs.platforms }}
  34. - name: Login to DockerHub
  35. uses: docker/login-action@v1
  36. with:
  37. username: ${{ secrets.DOCKERHUB_USERNAME }}
  38. password: ${{ secrets.DOCKERHUB_TOKEN }}
  39. - name: Build and push
  40. uses: docker/build-push-action@v2
  41. with:
  42. context: .
  43. file: ./Dockerfile
  44. # 所需要的体系结构,可以在 Available platforms 步骤中获取所有的可用架构
  45. platforms: linux/amd64,linux/arm64/v8
  46. # 镜像推送时间
  47. push: ${{ github.event_name != 'pull_request' }}
  48. # 给清单打上多个标签
  49. tags: |
  50. ${{ secrets.DOCKERHUB_USERNAME }}/chatgpt-dingtalk:${{ steps.date.outputs.today }}
  51. ${{ secrets.DOCKERHUB_USERNAME }}/chatgpt-dingtalk:latest