Browse Source
Merge branch 'main' into js/avx2-porter-duff
pull/2359/head
James Jackson-South
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
1 additions and
3 deletions
-
.github/workflows/build-and-test.yml
-
ci-pack.ps1
|
|
|
@ -114,7 +114,6 @@ jobs: |
|
|
|
if: ${{ matrix.options.sdk-preview != true }} |
|
|
|
uses: actions/setup-dotnet@v3 |
|
|
|
with: |
|
|
|
include-prerelease: true |
|
|
|
dotnet-version: | |
|
|
|
6.0.x |
|
|
|
|
|
|
|
@ -122,7 +121,6 @@ jobs: |
|
|
|
if: ${{ matrix.options.sdk-preview == true }} |
|
|
|
uses: actions/setup-dotnet@v3 |
|
|
|
with: |
|
|
|
include-prerelease: true |
|
|
|
dotnet-version: | |
|
|
|
7.0.x |
|
|
|
|
|
|
|
|
|
|
|
@ -3,4 +3,4 @@ dotnet clean -c Release |
|
|
|
$repositoryUrl = "https://github.com/$env:GITHUB_REPOSITORY" |
|
|
|
|
|
|
|
# Building for packing and publishing. |
|
|
|
dotnet pack -c Release --output "$PSScriptRoot/artifacts" /p:RepositoryUrl=$repositoryUrl |
|
|
|
dotnet pack -c Release -p:PackageOutputPath="$PSScriptRoot/artifacts" -p:RepositoryUrl=$repositoryUrl |
|
|
|
|