docker-image.yml 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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
  52. build-go-binary:
  53. runs-on: ubuntu-latest
  54. strategy:
  55. matrix:
  56. goos: [linux, windows, darwin] # 需要打包的系统
  57. goarch: [amd64, arm64] # 需要打包的架构
  58. exclude: # 排除某些平台和架构
  59. - goarch: arm64
  60. goos: windows
  61. steps:
  62. - uses: actions/checkout@v3
  63. - uses: wangyoucao577/go-release-action@v1.30
  64. with:
  65. github_token: ${{ secrets.GITHUB_TOKEN }} # 一个默认的变量,用来实现往 Release 中添加文件
  66. goos: ${{ matrix.goos }}
  67. goarch: ${{ matrix.goarch }}
  68. goversion: 1.18 # 可以指定编译使用的 Golang 版本
  69. binary_name: "chatgpt-dingtalk" # 可以指定二进制文件的名称
  70. extra_files: LICENSE README.md # 需要包含的额外文件