Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ci): Actually commit bundled IPC extension to dist/ #96

Merged
merged 4 commits into from
Jan 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build-and-test-ipc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -174,13 +174,15 @@ jobs:
- name: Commit bundle to dist/
if: success() && github.repository == 'apache/arrow-nanoarrow' && github.ref == 'refs/heads/main'
run: |
cp -r extensions/nanoarrow_ipc/nanoarrow-latest/ dist/
cp -r extensions/nanoarrow_ipc/nanoarrow-latest/* dist/
git add dist/**

# only commit if there are changes
git config --global user.email "actions@github.com"
git config --global user.name "GitHub Actions"
UPDATED=`git diff --name-only --cached`
if [ "$UPDATED" ]; then
git commit -m "Update dist/ for commit ${{ github.sha }}"
git commit -m "ipc: Update dist/ for commit ${{ github.sha }}"
git push
echo "$UPDATED"
fi