Skip to content

Commit

Permalink
Merge pull request #12 from dogged/ethomson/v1.6.3-prerelease
Browse files Browse the repository at this point in the history
Update libgit2 to v1.6.2
  • Loading branch information
ethomson committed Feb 28, 2023
2 parents b502f04 + 495f614 commit 9388db1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v3
with:
submodules: true
- name: Build
Expand Down Expand Up @@ -62,12 +62,12 @@ jobs:
-DLIBGIT2_FILENAME="${LIBGIT2_BASENAME}"
cmake --build . --config ${BUILD_TYPE}
echo "::set-output name=platform::${PLATFORM}"
echo "::set-output name=path::build/${LIBGIT2_FILENAME}"
echo "platform=${PLATFORM}" >> $GITHUB_OUTPUT
echo "path=build/${LIBGIT2_FILENAME}" >> $GITHUB_OUTPUT
shell: bash

- name: Upload Library
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: ${{steps.build.outputs.platform}}
path: ${{steps.build.outputs.path}}
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
sed -e "s/-\([0-9]*\)$/\.\1/")
fi
echo "Version ${VERSION}"
echo "::set-output name=version::${VERSION}"
echo "version=${VERSION}" >> $GITHUB_OUTPUT
shell: bash
- name: Build Package
id: build
Expand All @@ -128,9 +128,9 @@ jobs:
. ..\generate_props.ps1
nuget pack -version ${{steps.version.outputs.version}} -basepath . ..\dogged.native.binaries.nuspec
Write-Host "::set-output name=package::dogged.native.binaries.${{steps.version.outputs.version}}.nupkg"
Write-Host "package=dogged.native.binaries.${{steps.version.outputs.version}}.nupkg" >> $Env:GITHUB_OUTPUT
- name: Upload Package
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: nuget
path: build/${{steps.build.outputs.package}}

0 comments on commit 9388db1

Please sign in to comment.