Skip to content

Commit

Permalink
update electron 25.9.3 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
summeroff authored Oct 27, 2023
1 parent 45871ff commit f0269f9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
BUILD_DIRECTORY: "build"
DISTRIBUTE_DIRECTORY: "distribute"
RELEASE_BUCKET: "slobs-node-fontinfo"
ELECTRON_VERSION: "v25.8.2"
ELECTRON_VERSION: "v25.9.3"

permissions:
contents: read
Expand Down Expand Up @@ -69,6 +69,20 @@ jobs:
runs-on: windows-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Get the version of aws cli
run: aws --version
shell: powershell
- name: Install specific version of AWS CLI
run: |
$version = "2.13.29"
$zipfile = "AWSCLIV2.zip"
Invoke-WebRequest -OutFile $zipfile "https://awscli.amazonaws.com/AWSCLIV2-$version.msi"
Start-Process msiexec.exe -Wait -ArgumentList "/i $zipfile /qn"
rm $zipfile
shell: pwsh
- name: Get the version of aws cli after install
run: aws --version
shell: powershell
- name: Get build from cache
id: cache-check
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ set(freetype2_INSTALL ${CMAKE_BINARY_DIR}/freetype2)

SET(NODEJS_URL "https://artifacts.electronjs.org/headers/dist" CACHE STRING "Node.JS URL")
SET(NODEJS_NAME "iojs" CACHE STRING "Node.JS Name")
SET(NODEJS_VERSION "v25.8.2" CACHE STRING "Node.JS Version")
SET(NODEJS_VERSION "v25.9.3" CACHE STRING "Node.JS Version")

include(NodeJS)
include(ExternalProject)
Expand Down

0 comments on commit f0269f9

Please sign in to comment.