Skip to content

Commit 2155678

Browse files
author
jayeshmepani
committed
fix: allow binaries in gitignore and force add in workflow
1 parent cbf61e2 commit 2155678

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/release-prebuilt-libs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,6 @@ jobs:
158158
# 3. Push to main branch
159159
git config --local user.name "github-actions[bot]"
160160
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
161-
git add postalkit/libs/
161+
git add --force postalkit/libs/
162162
git commit -m "chore: populate prebuilt binaries in libs/ directory [skip ci]" || echo "No changes to commit"
163163
git push origin main

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ venv.bak/
4646
*.swo
4747

4848
# Project specific ignores
49-
postalkit/libs/*/*
50-
!postalkit/libs/README.md
49+
# Allow prebuilt binaries in the libs folder
50+
!postalkit/libs/
51+
5152

5253
# Build artifacts
5354
libpostal/

0 commit comments

Comments
 (0)