1919 BUILD_DIRECTORY : " build"
2020 DISTRIBUTE_DIRECTORY : " distribute"
2121 RELEASE_BUCKET : " obs-studio-deployment"
22- ELECTRON_VERSION : " v29.4.3 "
22+ ELECTRON_VERSION : " v43.2.0 "
2323
2424permissions :
2525 contents : read
2626
2727jobs :
2828 build :
2929 name : ' Build a package'
30- runs-on : windows-latest
30+ runs-on : windows-2022
3131 steps :
3232 - uses : actions/checkout@v3
3333 - name : Show GitHub context
@@ -36,12 +36,12 @@ jobs:
3636 run : echo "$GITHUB_CONTEXT"
3737 - name : Get the version
3838 id : get_version
39- run : echo ::set-output name= VERSION:: ${GITHUB_REF/refs\/tags\//}
39+ run : echo " VERSION= ${GITHUB_REF/refs\/tags\//}" >> "$GITHUB_OUTPUT"
4040 shell : bash
4141 - name : Install Node.js
42- uses : actions/setup-node@v3
42+ uses : actions/setup-node@v4
4343 with :
44- node-version : ' 16 .x'
44+ node-version : ' 24 .x'
4545 - name : Install dependencies
4646 run : yarn install --immutable --immutable-cache --check-cache
4747 - name : Add MSBuild to PATH
6666 upload_debug_symbols :
6767 needs : build
6868 name : ' Upload debug symbols'
69- runs-on : windows-latest
69+ runs-on : windows-2022
7070 if : startsWith(github.ref, 'refs/tags/')
7171 steps :
7272 - name : Get the version of aws cli
@@ -108,12 +108,12 @@ jobs:
108108 upload_release_package :
109109 needs : build
110110 name : ' Upload release package'
111- runs-on : windows-latest
111+ runs-on : windows-2022
112112 if : startsWith(github.ref, 'refs/tags/')
113113 steps :
114114 - name : Get the version
115115 id : get_version
116- run : echo ::set-output name= VERSION:: ${GITHUB_REF/refs\/tags\//}
116+ run : echo " VERSION= ${GITHUB_REF/refs\/tags\//}" >> "$GITHUB_OUTPUT"
117117 shell : bash
118118 - name : Get build from cache
119119 id : cache-check
0 commit comments