Skip to content

Commit

Permalink
Merge pull request #22 from microsoft/users/ryanb58/artifacts-pipeline
Browse files Browse the repository at this point in the history
Fix for typo with version_part_to_update
  • Loading branch information
Ryanb58 committed Jul 12, 2023
2 parents ed42af8 + 15812e2 commit 6621ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/auto-export-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
# Split the version into its components
$versionParts = $version.Split('.')
# Define an environment variable for the version part to increment
$versionPartToIncrement = "${{ github.event.inputs.version_part_to_updates }}"
$versionPartToIncrement = "${{ github.event.inputs.version_part_to_update }}"
switch ($versionPartToIncrement) {
"major" { $versionParts[0] = [int]$versionParts[0] + 1 }
"minor" { $versionParts[1] = [int]$versionParts[1] + 1 }
Expand Down

0 comments on commit 6621ff0

Please sign in to comment.