Skip to content

Commit

Permalink
Merge pull request #66 from AHOHNMYC/update_libgit2
Browse files Browse the repository at this point in the history
Fix CI
  • Loading branch information
shdwmtr authored Jul 17, 2024
2 parents 6feced6 + a8fe40d commit 8123684
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
submodules: true

- name: Setup | Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20

Expand All @@ -53,7 +53,7 @@ jobs:
run: |
$VERSION = npx semantic-release --dry-run | Select-String -Pattern "The next release version is" | ForEach-Object { $_.ToString() -replace '.*The next release version is ([0-9.]+).*', '$1' }
Write-Host "Version: $VERSION"
echo "::set-output name=version::$version"
echo "::setOutput name=version::$version"
Set-Content -Path ./version -Value "# current version of millennium`nv$VERSION"
git config user.email "[email protected]"
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
}
- name: Set up cache for Python source
uses: actions/cache@v3
uses: actions/cache@v4
id: build-cache
with:
path: |
Expand Down Expand Up @@ -124,6 +124,10 @@ jobs:
shell: pwsh

- name: (Python) Add msbuild to PATH
if: steps.build-cache.outputs.cache-hit != 'true'
uses: microsoft/setup-msbuild@v2

- name: (Python) Build 3.11.8
if: steps.build-cache.outputs.cache-hit != 'true'
run: |
Expand Down Expand Up @@ -168,7 +172,7 @@ jobs:
run: |
# bootstrap and install vcpkg
./vendor/vcpkg/bootstrap-vcpkg.bat
./vendor/vcpkg/bootstrap-vcpkg.bat -disableMetrics
./vendor/vcpkg/vcpkg integrate install
- name: (Generator) Configure CMake
Expand All @@ -193,4 +197,4 @@ jobs:
- name: Setup | Run Semantic Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion vendor/vcpkg
Submodule vcpkg updated 1462 files

0 comments on commit 8123684

Please sign in to comment.