File tree 2 files changed +29
-4
lines changed
2 files changed +29
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : CD
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - ' *'
7
+
8
+ jobs :
9
+ convert_via_pandoc :
10
+ runs-on : ubuntu-latest
11
+ permissions :
12
+ contents : write
13
+ packages : write
14
+
15
+ steps :
16
+ - uses : actions/checkout@v3
17
+ - name : create file list
18
+ id : files_list
19
+ run : |
20
+ echo "files=$(printf '"%s" ' *.md)" > $GITHUB_OUTPUT
21
+ - uses : docker://pandoc/latex:2.9
22
+ with :
23
+ args : --output=output/build-your-ai-coding-assistant.pdf ${{ steps.files_list.outputs.files }}
24
+ - uses : actions/upload-artifact@v3
25
+ with :
26
+ name : output
27
+ path : output
Original file line number Diff line number Diff line change 1
- # 构建你自己的 AI 辅助编码助手
1
+ # [ 构建你自己的 AI 辅助编码助手] ( https://github.com/phodal/build-ai-coding-assistant )
2
2
3
- <p align =" center " >
4
- <img src =" images/cover.jpeg " width =" 100% " height =" 100% " alt =" Cover " />
5
- </p >
3
+ ![ Cover] ( images/cover.jpeg )
6
4
7
5
2023 年,生成式 AI 的火爆,让越来越多的组织开始引入 AI 辅助编码。与在 2021 年发布的 GitHub Copilot 稍有差异的是,代码补全只是重多场景中的一个。
8
6
大量的企业内部在探索结合需求生成完整代码、代码审查等场景,也引入生成式 AI,来提升开发效率。
You can’t perform that action at this time.
0 commit comments