File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -83,13 +83,12 @@ jobs:
83
83
run : cargo build --manifest-path rewatch/Cargo.toml --target ${{matrix.rust-target}} --release
84
84
85
85
- name : Get artifact dir name
86
- id : artifact-dir
87
86
run : node .github/workflows/get_artifact_dir_name.js
88
87
89
88
- name : " Upload artifact: rewatch binary"
90
89
uses : actions/upload-artifact@v4
91
90
with :
92
- name : rewatch-${{ steps.artifact-dir.outputs.dirname }}
91
+ name : rewatch-${{env.artifact_dir_name }}
93
92
path : rewatch/target/${{matrix.rust-target}}/release/rewatch${{ runner.os == 'Windows' && '.exe' || '' }}
94
93
95
94
# Build statically linked Linux binaries in an Alpine-based Docker container
@@ -384,7 +383,6 @@ jobs:
384
383
- name : Build playground compiler
385
384
if : matrix.os == 'ubuntu-latest'
386
385
run : |
387
- opam install js_of_ocaml.5.8.1
388
386
opam exec -- node packages/playground-bundling/scripts/generate_cmijs.js
389
387
opam exec -- dune build --profile browser
390
388
cp ./_build/default/jscomp/jsoo/jsoo_playground_main.bc.js playground/compiler.js
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ const { dirName: artifactDirName } = require("../../cli/bin_path.js");
5
5
6
6
// Pass artifactDirName to subsequent GitHub actions
7
7
fs . appendFileSync (
8
- process . env . GITHUB_OUTPUT ,
9
- `dirname =${ artifactDirName } ${ os . EOL } `
8
+ process . env . GITHUB_ENV ,
9
+ `artifact_dir_name =${ artifactDirName } ${ os . EOL } `
10
10
) ;
You can’t perform that action at this time.
0 commit comments