Add artifact structure verification step

This commit is contained in:
southseact-3d
2026-02-10 13:09:00 +00:00
parent c9569faadd
commit f9739608e6

View File

@@ -76,6 +76,13 @@ jobs:
path: opencode/packages/opencode/dist path: opencode/packages/opencode/dist
merge-multiple: true merge-multiple: true
- name: Verify artifact structure
run: |
echo "Contents of dist directory:"
ls -la opencode/packages/opencode/dist/
echo "Looking for opencode binary..."
find opencode/packages/opencode/dist -name "opencode" -type f 2>/dev/null || echo "Binary not found"
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
with: with: