Skip to content

Commit

Permalink
remove more extra quotation
Browse files Browse the repository at this point in the history
  • Loading branch information
kortemik committed Dec 10, 2024
1 parent 17150be commit 8126854
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install jq

- name: Get version
run: printf "RELEASE_VERSION='%q'\n" "$(git describe --tags)" >> $GITHUB_ENV
run: printf "RELEASE_VERSION=%q\n" "$(git describe --tags)" >> $GITHUB_ENV

- name: Initialize MariaDB
env:
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
curl -X PUT --header 'Content-Type: application/json' --upload-file ${{ vars.COVERITY_PROJECT_URL_NAME }}.tgz ${{ env.RESPONSE_URL }}
- name: Prepare build id
run: printf "COVERITY_BUILD_ID='%q'\n" "$(jq -r '.build_id' response)" >> $GITHUB_ENV
run: printf "COVERITY_BUILD_ID=%q\n" "$(jq -r '.build_id' response)" >> $GITHUB_ENV

- name: Build Coverity Submit URL
run: printf 'COVERITY_SUBMIT_URL=%q/%s/builds/%s/enqueue' "https://scan.coverity.com/projects" "${{ vars.COVERITY_PROJECT_URL_ID }}" "${{ env.COVERITY_BUILD_ID }}" >> $GITHUB_ENV
Expand Down

0 comments on commit 8126854

Please sign in to comment.