mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
Add debug output to diagnose missing lib files
This commit is contained in:
parent
41b270cff0
commit
cfa561adae
1 changed files with 16 additions and 0 deletions
16
.github/workflows/publish.yml
vendored
16
.github/workflows/publish.yml
vendored
|
|
@ -57,6 +57,13 @@ jobs:
|
|||
- name: Generate protobuf code
|
||||
run: buf generate
|
||||
|
||||
- name: Show generated files
|
||||
run: |
|
||||
echo "=== packages/ts contents ==="
|
||||
ls -la packages/ts/
|
||||
echo "=== packages/ts/lib contents ==="
|
||||
ls -la packages/ts/lib/ || echo "lib folder not found"
|
||||
|
||||
- name: Set package versions
|
||||
run: |
|
||||
set -euxo pipefail
|
||||
|
|
@ -84,6 +91,15 @@ jobs:
|
|||
with:
|
||||
name: ts_code
|
||||
|
||||
- name: Show downloaded files
|
||||
run: |
|
||||
echo "=== Working directory ==="
|
||||
pwd
|
||||
echo "=== Contents ==="
|
||||
ls -la
|
||||
echo "=== lib/ contents ==="
|
||||
ls -la lib/ || echo "lib folder not found"
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue