抽象AI响应服务,添加通义千问实现,日志改为slf4j-simple #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker Image Build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: docker build -f docker/Dockerfile -t wechatrobot:$(date +%s) . | |
- name: Build the native-image Docker image | |
run: docker build -f docker/native-image-Dockerfile -t wechatrobot-native:$(date +%s) . |