docker-image.yml 2.8 KB

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