Skip to content

Commit

Permalink
fix(CI/CD workflow): WIP #95 incorrect arch selected for the runner
Browse files Browse the repository at this point in the history
  • Loading branch information
MRColorR committed Oct 10, 2024
1 parent 8ffab47 commit 6265f27
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release-on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ jobs:
python-version: '3.12'
cache: 'pip' # Enables caching for pip dependencies

# Step to print platform details for diagnostic purposes
- name: Check Python platform info
shell: bash # Use bash shell for consistency
run: |
echo "Runner OS detected arch: $(uname -a)"
echo "Python detected arch: $(python3 -m platform)"
echo "Expected runner architecture: ${{ matrix.architecture }}"
- name: Install dependencies
shell: bash # Use bash shell for consistency
run: |
Expand Down

0 comments on commit 6265f27

Please sign in to comment.