Skip to content

Commit

Permalink
fixed type, added $
Browse files Browse the repository at this point in the history
  • Loading branch information
James Wood authored and James Wood committed Jan 6, 2025
1 parent bff7800 commit 93e3e0d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
poetry run pytest -n auto --junitxml=build/reports/pytest.xml --cov=podaac/ --cov-report=xml:build/reports/coverage.xml -m "not aws and not integration" tests/
- name: SonarCloud Scan
id: sonarcloud
uses: sonarsource/sonarcloud-github-action@master
uses: sonarsource/sonarqube-scan-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Expand All @@ -109,7 +109,7 @@ jobs:
- name: SonarCloud Scan Retry
id: sonarcloud-retry
if: steps.sonarcloud.outcome == 'failure'
uses: sonarsource/sonarcloud-github-action@master
uses: sonarsource/sonarqube-scan-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Expand Down Expand Up @@ -314,8 +314,8 @@ jobs:
github.ref == 'refs/heads/main'
uses: softprops/action-gh-release@v2
with:
tag_name: "${{ env.software_version }}" # Use the tag that triggered the action
name: Release v{{ env.software_version }}
tag_name: ${{ env.software_version }} # Use the tag that triggered the action
name: Release v${{ env.software_version }}
draft: false
generate_release_notes: true
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 93e3e0d

Please sign in to comment.