Skip to content

Commit f8f30f6

Browse files
authored
chore: Fix test framework name and use env for assembly key path (#127)
1 parent 42c2c5a commit f8f30f6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
name: Get secrets
3535
with:
3636
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
37-
s3_path_pairs: 'launchdarkly-releaser/dotnet/LaunchDarkly.ClientSdk.snk = LaunchDarkly.ClientSdk.snk'
37+
s3_path_pairs: ${{ env.ASSEMBLY_KEY_PATH_PAIR }}
3838

3939
- id: build
4040
name: Build and Test SDK

.github/workflows/release-sdk-client.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ jobs:
4242
name: Get secrets
4343
with:
4444
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
45-
s3_path_pairs: 'launchdarkly-releaser/dotnet/LaunchDarkly.ClientSdk.snk = LaunchDarkly.ClientSdk.snk'
45+
s3_path_pairs: ${{ env.ASSEMBLY_KEY_PATH_PAIR }}
4646

4747
- name: CI check
4848
uses: ./.github/actions/ci
4949
with:
5050
project_file: ${{ env.PROJECT_FILE }}
5151
test_project_file: ${{ env.TEST_PROJECT_FILE }}
52-
target_test_framework: "8.0"
52+
target_test_framework: "net8.0"
5353

5454
- name: Release build
5555
uses: ./.github/actions/build-release

0 commit comments

Comments
 (0)