Skip to content

Commit

Permalink
ci: update github action
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdihadeli committed Nov 27, 2024
1 parent 5a764aa commit 536f36a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,16 +98,24 @@ jobs:
uses: actions/download-artifact@v4
with:
name: tree-sitter-ubuntu-binaries
path: ${{ env.AIAssistBuildOutput }}
path: ${{ env.DownloadOutput }}

- name: Download Windows binaries
uses: actions/download-artifact@v4
with:
name: tree-sitter-windows-binaries
path: ${{ env.AIAssistBuildOutput }}
path: ${{ env.DownloadOutput }}

- name: Flatten downloaded binaries
run: |
mv ${{ env.DownloadOutput }}/bins/* ${{ env.AIAssistBuildOutput }}/
mv ${{ env.DownloadOutput }}/grammars/bins/* ${{ env.AIAssistBuildOutput }}/
rm -rf ${{ env.DownloadOutput }}
- name: List files
run: |
echo "Listing files in DownloadOutput:"
ls -R ${{ env.DownloadOutput }}
echo "Listing files in AIAssistBuildOutput:"
ls -R ${{ env.AIAssistBuildOutput }}
Expand Down

0 comments on commit 536f36a

Please sign in to comment.