@@ -58,16 +58,21 @@ jobs:
5858 pip install "$WHEEL_FILE"
5959
6060 # Verify CLI is available
61- agentex --version
61+ agentex --help | head -n 5
6262
6363 # Store wheel path for later use if needed
6464 echo "AGENTEX_WHEEL=$WHEEL_FILE" >> $GITHUB_ENV
6565
66+ - name : Debug Docker Hub credentials
67+ run : |
68+ echo "Username exists: ${{ vars.DOCKERHUB_USERNAME != '' }}"
69+ echo "Token exists: ${{ secrets.DOCKERHUB_TOKEN != '' }}"
70+
6671 - name : Login to Docker Hub
6772 uses : docker/login-action@v3
6873 with :
6974 username : ${{ vars.DOCKERHUB_USERNAME }}
70- password : ${{ secrets.DOCKERHUB_TOKEN }}
75+ password : ${{ secrets.DOCKERHUB_PASSWORD }}
7176
7277 # Set up Docker Buildx
7378 - name : Set up Docker Buildx
@@ -107,7 +112,7 @@ jobs:
107112
108113 run-agentex-tests :
109114 runs-on : ubuntu-latest
110- if : needs.detect-changes.outputs.changed-tutorials != "run"
115+ if : false # Disabled - not running this job for now
111116 steps :
112117 - name : Checkout code
113118 uses : actions/checkout@v3
@@ -139,7 +144,7 @@ jobs:
139144 pip install "$WHEEL_FILE"
140145
141146 # Verify CLI is available
142- agentex --version
147+ agentex --help | head -n 5
143148
144149 # Store wheel path for later use if needed
145150 echo "AGENTEX_WHEEL=$WHEEL_FILE" >> $GITHUB_ENV
0 commit comments