Skip to content

Commit

Permalink
fix thumb
Browse files Browse the repository at this point in the history
  • Loading branch information
james-garriss committed Sep 17, 2024
1 parent 1d98a14 commit 00998a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
6 changes: 1 addition & 5 deletions .github/actions/test-product/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,8 @@ runs:
Import-Module -Name Selenium
cd repo
# Read thumbprint from previous step.
$thumbprint = $env::Thumbprint
$thumbprint = "${{ inputs.Thumbprint }}"
$productAlias = "${{ inputs.Alias }}"
echo "Product alias is:"
echo $productAlias
$params = "${{ inputs.TestParams }}"
# Split into products
$products = $params.split("|")
Expand Down Expand Up @@ -100,5 +98,3 @@ runs:
}
}
shell: powershell
env:
Thumbprint: ${{ steps.get-thumbprint.outputs.thumbprint }}
6 changes: 1 addition & 5 deletions .github/workflows/function_test_teams.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,9 @@ name: Function Test Teams
# This is a reusable workflow called by the pipeline.
on:
workflow_call:
inputs:
secrets:
Thumbprint:
required: true
type: string
secrets:
# Thumbprint:
# required: true
PfxBase64:
required: true
PfxPassword:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/test_concurrency.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,8 @@ jobs:
test_teams:
name: Test Teams
uses: ./.github/workflows/function_test_teams.yaml
inputs:
Thumbprint: ${{ needs.thumbprint.outputs.Thumbprint }}
secrets:
# Thumbprint: ${{ needs.thumbprint.outputs.Thumbprint }}
Thumbprint: ${{ needs.thumbprint.outputs.Thumbprint }}
PfxBase64: ${{ secrets.NIGHTLY_TEST_BUILD_PFX }}
PfxPassword: ${{ secrets.NIGHTLY_TEST_BUILD_PW }}
TestParams: ${{ secrets.NIGHTLY_TEST_BUILD_PARAMS }}
Expand Down

0 comments on commit 00998a4

Please sign in to comment.