Skip to content

Commit 9388db1

Browse files
authored
Merge pull request #12 from dogged/ethomson/v1.6.3-prerelease
Update libgit2 to v1.6.2
2 parents b502f04 + 495f614 commit 9388db1

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v1
22+
uses: actions/checkout@v3
2323
with:
2424
submodules: true
2525
- name: Build
@@ -62,12 +62,12 @@ jobs:
6262
-DLIBGIT2_FILENAME="${LIBGIT2_BASENAME}"
6363
cmake --build . --config ${BUILD_TYPE}
6464
65-
echo "::set-output name=platform::${PLATFORM}"
66-
echo "::set-output name=path::build/${LIBGIT2_FILENAME}"
65+
echo "platform=${PLATFORM}" >> $GITHUB_OUTPUT
66+
echo "path=build/${LIBGIT2_FILENAME}" >> $GITHUB_OUTPUT
6767
shell: bash
6868

6969
- name: Upload Library
70-
uses: actions/upload-artifact@v1
70+
uses: actions/upload-artifact@v3
7171
with:
7272
name: ${{steps.build.outputs.platform}}
7373
path: ${{steps.build.outputs.path}}
@@ -115,7 +115,7 @@ jobs:
115115
sed -e "s/-\([0-9]*\)$/\.\1/")
116116
fi
117117
echo "Version ${VERSION}"
118-
echo "::set-output name=version::${VERSION}"
118+
echo "version=${VERSION}" >> $GITHUB_OUTPUT
119119
shell: bash
120120
- name: Build Package
121121
id: build
@@ -128,9 +128,9 @@ jobs:
128128
. ..\generate_props.ps1
129129
130130
nuget pack -version ${{steps.version.outputs.version}} -basepath . ..\dogged.native.binaries.nuspec
131-
Write-Host "::set-output name=package::dogged.native.binaries.${{steps.version.outputs.version}}.nupkg"
131+
Write-Host "package=dogged.native.binaries.${{steps.version.outputs.version}}.nupkg" >> $Env:GITHUB_OUTPUT
132132
- name: Upload Package
133-
uses: actions/upload-artifact@v1
133+
uses: actions/upload-artifact@v3
134134
with:
135135
name: nuget
136136
path: build/${{steps.build.outputs.package}}

0 commit comments

Comments
 (0)