Skip to content

Commit

Permalink
fix inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
james-garriss committed Sep 17, 2024
1 parent ec5d209 commit 14c28ba
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
12 changes: 9 additions & 3 deletions .github/actions/test-product/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,20 @@ runs:
using: "composite"
steps:
- run: |
echo "thmb"
echo "${{ inputs:Thumbprint }}"
echo "alis"
echo "${{ inputs:Alias }}"
echo "params"
echo "${{ inputs:TestParams }}"
Import-Module -Name Selenium
cd repo
# Read thumbprint from previous step.
$thumbprint = $env:Thumbprint
$productAlias = $env:Alias
$thumbprint = "${{ inputs:Thumbprint }}"
$productAlias = "${{ inputs:Alias }}"
echo "Product alias is:"
echo $productAlias
$params = $env:TestParams
$params = "${{ inputs:TestParams }}"
# Split into products
$products = $params.split("|")
foreach ($product in $products)
Expand Down
1 change: 0 additions & 1 deletion Testing/Linting/MegaLinter/.yamllint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,3 @@ rules:
document-start: disable
truthy: disable
comments-indentation: disable
max-spaces-inside: disable

0 comments on commit 14c28ba

Please sign in to comment.