Skip to content

Commit a814424

Browse files
committed
chore: add cd script for testing
1 parent 8dc7c06 commit a814424

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

.github/workflows/cd.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
# 构建你自己的 AI 辅助编码助手
1+
# [构建你自己的 AI 辅助编码助手](https://github.com/phodal/build-ai-coding-assistant)
22

3-
<p align="center">
4-
<img src="images/cover.jpeg" width="100%" height="100%" alt="Cover" />
5-
</p>
3+
![Cover](images/cover.jpeg)
64

75
2023 年,生成式 AI 的火爆,让越来越多的组织开始引入 AI 辅助编码。与在 2021 年发布的 GitHub Copilot 稍有差异的是,代码补全只是重多场景中的一个。
86
大量的企业内部在探索结合需求生成完整代码、代码审查等场景,也引入生成式 AI,来提升开发效率。

0 commit comments

Comments
 (0)