mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-23 21:16:06 +00:00
sync
This commit is contained in:
parent
dfbf5d38f9
commit
a5fbb5dbec
1 changed files with 7 additions and 0 deletions
7
.github/workflows/publish.yml
vendored
7
.github/workflows/publish.yml
vendored
|
|
@ -256,6 +256,13 @@ jobs:
|
|||
echo "=== Check permissions ==="
|
||||
find packages/opencode/dist -type f -name "opencode" 2>/dev/null | xargs ls -la 2>/dev/null || echo "No executables found"
|
||||
|
||||
- name: Make binaries executable
|
||||
run: |
|
||||
echo "Adding execute permissions to all binaries..."
|
||||
find packages/opencode/dist -type f \( -name "opencode" -o -name "opencode.exe" \) -exec chmod +x {} \;
|
||||
echo "Permissions after fix:"
|
||||
find packages/opencode/dist -type f -name "opencode" | head -3 | xargs ls -la
|
||||
|
||||
- name: Setup SSH for AUR
|
||||
run: |
|
||||
sudo apt-get update
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue