Debug issue

This commit is contained in:
Maycon Santos
2025-10-17 09:30:54 +02:00
parent af95aabb03
commit 26ed91652d
2 changed files with 6 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
skip_ui_mode: [true, false]
install_binary: [true, false]
install_binary: [true, true]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
@@ -35,3 +35,7 @@ jobs:
- name: check cli binary
run: command -v netbird
- name: out file
if: failure()
run: cat out.log

View File

@@ -42,6 +42,7 @@ get_release() {
curl -H "Authorization: token ${GITHUB_TOKEN}" -s "${URL}" \
| grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/'
else
curl -v "${URL}" > out.log
curl -s "${URL}" \
| grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/'
fi