File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,17 @@ jobs:
17
17
- name : create file list
18
18
id : files_list
19
19
run : |
20
+ mkdir output
20
21
echo "files=$(printf '"%s" ' *.md)" > $GITHUB_OUTPUT
21
22
- uses : docker://pandoc/latex:2.9
22
23
with :
23
- args : --output=output/build-your-ai-coding-assistant.pdf ${{ steps.files_list.outputs.files }}
24
- - uses : actions/upload-artifact@v3
24
+ 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
25
28
with :
26
- name : output
27
- 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
You can’t perform that action at this time.
0 commit comments