Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
fschuch committed Jun 6, 2024
1 parent 64e144f commit 642bee9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
sonarcloud:
needs: test
runs-on: ubuntu-latest
if: github.repository == 'fschuch/xcompact3d_toolbox' # prevent running on forks
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -89,7 +90,7 @@ jobs:
args: >
-Dsonar.organization=fschuch
-Dsonar.projectKey=fschuch_xcompact3d_toolbox
-Dsonar.python.version=3.8, 3.9, 3.10, 3.11, 3.12
-Dsonar.python.version="3.8, 3.9, 3.10, 3.11, 3.12"
-Dsonar.sources=xcompact3d_toolbox
-Dsonar.tests=tests
-Dsonar.python.coverage.reportPaths=coverage.*.xml
Expand Down Expand Up @@ -120,7 +121,7 @@ jobs:
release:
needs: build
# upload to PyPI on every tag
if: github.event_name == 'push' && github.ref_type == 'tag' && github.repository == 'fschuch/xcompact3d_toolbox'
if: github.event_name == 'push' && github.ref_type == 'tag'
runs-on: ubuntu-latest
environment:
name: pypi
Expand Down

0 comments on commit 642bee9

Please sign in to comment.