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:
1717 - name : create file list
1818 id : files_list
1919 run : |
20+ mkdir output
2021 echo "files=$(printf '"%s" ' *.md)" > $GITHUB_OUTPUT
2122 - uses : docker://pandoc/latex:2.9
2223 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
2528 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