File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,25 +14,21 @@ jobs:
1414 runs-on : ubuntu-latest
1515
1616 steps :
17- # --- FIX: ADD CHECKOUT STEP ---
1817 - name : Check out repository code
1918 uses : actions/checkout@v4
20- # --- END FIX ---
2119
22- # Step 2: Set up Python (Now it can find pyproject.toml)
2320 - name : Set up Python
2421 uses : actions/setup-python@v5
2522 with :
26- python-version : ' 3.13'
27- cache : ' pip' # Caching should work now
23+ python-version : ' 3.13'
24+ # cache: 'pip' # <-- FIX: Temporarily removed caching
2825
29- # Step 3: Install our CLI tool from PyPI
3026 - name : Install Codex CLI Studio
3127 run : |
3228 python -m pip install --upgrade pip
33- pip install codex-cli-studio # Install the latest version from PyPI
29+ pip install codex-cli-studio
30+
3431
35- # Step 4: Extract code... (Rest of the steps remain the same)
3632 - name : Extract Code Snippet from Issue Body
3733 id : extract_code
3834 run : |
4945 echo "EOF" >> $GITHUB_OUTPUT
5046 fi
5147
52- # Step 5: Run cstudio explain...
5348 - name : Run cstudio explain
5449 id : cstudio
5550 if : steps.extract_code.outputs.error_message == null
7166 echo "$EXPLANATION" >> $GITHUB_OUTPUT
7267 echo "EOF" >> $GITHUB_OUTPUT
7368
74- # Step 6: Post the explanation...
7569 - name : Create Comment on Issue
7670 uses : actions/github-script@v7
7771 with :
You can’t perform that action at this time.
0 commit comments