Remove duplicate job step from rebase

This commit is contained in:
twangboy 2024-11-07 10:47:05 -07:00
parent 94b61ec940
commit 6414095b60
No known key found for this signature in database
GPG key ID: 93FF3BDEB278C9EB

View file

@ -62,18 +62,6 @@ jobs:
}
Write-Output "SaltVersion=$version" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- name: Get Version
run: |
# We need to get the version here and make it an environment variable
# It is used to install via bootstrap and in the test
# The version is in the instance name
$instance = "${{ matrix.instance }}"
$version = $instance -split "-",2
if ( $version.Count -gt 1 ) {
$version = $version[1].Replace("-", ".")
}
Write-Output "SaltVersion=$version" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- name: Bootstrap Salt
run: |
. .\bootstrap-salt.ps1 -RunService $false -Version $env:SaltVersion