Skip to content

Commit

Permalink
fix fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell committed Nov 1, 2023
1 parent b9df6f3 commit 141468f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ jobs:
- name: Create fix version
run: |
curl --request POST \
--url '$JIRA_BASE_URL/rest/api/2/version' \
--user '$JIRA_USER_EMAIL:$JIRA_API_TOKEN' \
--url "$JIRA_BASE_URL/rest/api/2/version" \
--user "$JIRA_USER_EMAIL:$JIRA_API_TOKEN" \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"name": "$FIX_VERSION",
"projectId": 20084
}'
--data "{
\"name\": \"$FIX_VERSION\",
\"projectId\": 20084
}"
env:
JIRA_BASE_URL: ${{ vars.JIRA_BASE_URL }}
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
Expand Down

0 comments on commit 141468f

Please sign in to comment.