We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a814424 commit 129170bCopy full SHA for 129170b
.github/workflows/cd.yml
@@ -17,11 +17,17 @@ jobs:
17
- name: create file list
18
id: files_list
19
run: |
20
+ mkdir output
21
echo "files=$(printf '"%s" ' *.md)" > $GITHUB_OUTPUT
22
- uses: docker://pandoc/latex:2.9
23
with:
- args: --output=output/build-your-ai-coding-assistant.pdf ${{ steps.files_list.outputs.files }}
24
- - uses: actions/upload-artifact@v3
+ args: --output=output/build-your-ai-coding-assistant.docx ${{ steps.files_list.outputs.files }}
25
+
26
+ - name: Upload assets to release
27
+ uses: svenstaro/upload-release-action@v2
28
- name: output
- path: output
29
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
30
+ file: output/build-your-ai-coding-assistant.docx
31
+ tag: ${{ github.ref }}
32
+ overwrite: true
33
+ file_glob: true
0 commit comments