Skip to content

Commit

Permalink
Minor syntax fixes for release yaml (#1401)
Browse files Browse the repository at this point in the history
  • Loading branch information
alerickson authored Sep 12, 2023
1 parent d24daee commit 8aef3c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .ci/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ parameters:
displayNameJob2: 'Release PSResourceGet to PSGallery'

jobs:
- job: ${{ parameter.validationJob1 }}
- job: ${{ parameters.validationJob1 }}
displayName: ${{ parameters.displayValidationJob1 }}
pool: server
timeoutInMinutes: 4320 # job times out in 3 days
Expand All @@ -24,7 +24,7 @@ jobs:
onTimeout: reject

- job: ${{ parameters.jobName1 }}
dependsOn: ${{ validationJob1 }}
dependsOn: ${{ parameters.validationJob1 }}
pool:
name: 1ES
demands:
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
nuGetFeedType: external
publishFeedCredentials: PSCoreReleasePush

- job: ${{ parameter.validationJob2 }}
- job: ${{ parameters.validationJob2 }}
dependsOn: ${{ parameters.jobName1 }}
displayName: ${{ parameters.displayValidationJob2 }}
pool: server
Expand Down

0 comments on commit 8aef3c5

Please sign in to comment.