123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- # This is a basic workflow to help you get started with Actions
- name: build docker image
- # Controls when the action will run.
- on:
- push:
- branches:
- - main
- # Allows you to run this workflow manually from the Actions tab
- # 可以手动触发
- workflow_dispatch:
- inputs:
- logLevel:
- description: 'Log level'
- required: true
- default: 'warning'
- tags:
- description: 'Test scenario tags'
- jobs:
- buildx:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout
- uses: actions/checkout@v2
- - name: Get current date
- id: date
- run: echo "::set-output name=today::$(date +'%Y-%m-%d_%H-%M')"
- - name: Set up QEMU
- uses: docker/setup-qemu-action@v1
- - name: Set up Docker Buildx
- id: buildx
- uses: docker/setup-buildx-action@v1
- - name: Available platforms
- run: echo ${{ steps.buildx.outputs.platforms }}
- - name: Login to DockerHub
- uses: docker/login-action@v1
- with:
- username: ${{ secrets.DOCKERHUB_USERNAME }}
- password: ${{ secrets.DOCKERHUB_TOKEN }}
- - name: Build and push
- uses: docker/build-push-action@v2
- with:
- context: .
- file: ./Dockerfile
- # 所需要的体系结构,可以在 Available platforms 步骤中获取所有的可用架构
- platforms: linux/amd64,linux/arm64/v8
- # 镜像推送时间
- push: ${{ github.event_name != 'pull_request' }}
- # 给清单打上多个标签
- tags: |
- ${{ secrets.DOCKERHUB_USERNAME }}/chatgpt-dingtalk:${{ steps.date.outputs.today }}
- ${{ secrets.DOCKERHUB_USERNAME }}/chatgpt-dingtalk:latest
- build-go-binary:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- goos: [linux, windows, darwin] # 需要打包的系统
- goarch: [amd64, arm64] # 需要打包的架构
- exclude: # 排除某些平台和架构
- - goarch: arm64
- goos: windows
- steps:
- - uses: actions/checkout@v3
- - uses: wangyoucao577/go-release-action@v1.30
- with:
- github_token: ${{ secrets.GITHUB_TOKEN }} # 一个默认的变量,用来实现往 Release 中添加文件
- goos: ${{ matrix.goos }}
- goarch: ${{ matrix.goarch }}
- goversion: 1.18 # 可以指定编译使用的 Golang 版本
- binary_name: "chatgpt-dingtalk" # 可以指定二进制文件的名称
- extra_files: LICENSE README.md # 需要包含的额外文件
|