From 6414095b6096d42f473e4a42398584f6d707b3d1 Mon Sep 17 00:00:00 2001 From: twangboy Date: Thu, 7 Nov 2024 10:47:05 -0700 Subject: [PATCH] Remove duplicate job step from rebase --- .github/workflows/test-windows.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index 7a11264..aa7f315 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -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