Skip to content

Commit 9e91a51

Browse files
committed
Fixed build
1 parent 86e329e commit 9e91a51

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/build-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: |
2222
dotnet tool install --global minver-cli --version 2.3.1
2323
version=$(minver --tag-prefix v)
24-
echo "::set-env name=MINVERVERSIONOVERRIDE::$version"
24+
echo "MINVERVERSIONOVERRIDE=$version" >> $GITHUB_ENV
2525
- name: Build
2626
run: dotnet build --configuration Release Exceptionless.Net.NonWindows.sln
2727
- name: Run Tests

.github/workflows/build-osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: |
2222
dotnet tool install --global minver-cli --version 2.3.1
2323
version=$(minver --tag-prefix v)
24-
echo "::set-env name=MINVERVERSIONOVERRIDE::$version"
24+
echo "MINVERVERSIONOVERRIDE=$version" >> $GITHUB_ENV
2525
- name: Build
2626
run: dotnet build --configuration Release Exceptionless.Net.NonWindows.sln
2727
- name: Run Tests

.github/workflows/build-windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: |
2222
dotnet tool install --global minver-cli --version 2.3.1
2323
version=$(minver --tag-prefix v)
24-
echo "::set-env name=MINVERVERSIONOVERRIDE::$version"
24+
echo "MINVERVERSIONOVERRIDE=$version" >> $GITHUB_ENV
2525
- name: Build
2626
run: dotnet build --configuration Release Exceptionless.Net.Windows.sln
2727
- name: Run Tests
@@ -38,10 +38,10 @@ jobs:
3838
run: |
3939
for package in $(find -name "*.nupkg" | grep "minver" -v); do
4040
echo "${0##*/}": Pushing $package...
41-
41+
4242
# GitHub
4343
gpr push $package -k ${{ secrets.GITHUB_TOKEN }} || true
44-
44+
4545
# Feedz (remove once GitHub supports anonymous access)
4646
dotnet nuget push $package --source https://f.feedz.io/exceptionless/exceptionless/nuget --api-key ${{ secrets.FEEDZ_KEY }} --skip-duplicate
4747
done

Exceptionless.Net.sln

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ VisualStudioVersion = 16.0.29209.152
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{728C18BC-4085-4492-B0B2-8211CA209A50}"
77
ProjectSection(SolutionItems) = preProject
8-
.github\workflows\build.yml = .github\workflows\build.yml
98
build\common.props = build\common.props
109
CONTRIBUTING.md = CONTRIBUTING.md
1110
LICENSE.txt = LICENSE.txt

0 commit comments

Comments
 (0)