Skip to content

Commit 07977da

Browse files
committed
renamed update-md-files => update-ci-files
1 parent b508fed commit 07977da

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/examples-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
$newTag = "${{ github.event.client_payload.newTag }}"
2222
2323
. .\update-version.ps1 # Import the functions
24-
dir -r .github\**\*.yml | % { update-md-files $_ -OldVersion $oldTag -NewVersion $newTag }
25-
dir -r .azure\**\*.yml | % { update-md-files $_ -OldVersion $oldTag -NewVersion $newTag }
24+
dir -r .github\**\*.yml | % { update-ci-files $_ -OldVersion $oldTag -NewVersion $newTag }
25+
dir -r .azure\**\*.yml | % { update-ci-files $_ -OldVersion $oldTag -NewVersion $newTag }
2626
2727
git add --verbose .
2828
git config user.name 'gittools-bot'

update-version.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function update-md-files()
1+
function update-ci-files()
22
{
33
param(
44
[Parameter(Mandatory = $True, Position = 0, ValueFromPipeline = $true)]

0 commit comments

Comments
 (0)