Skip to content

Commit 270ffb6

Browse files
authored
Merge pull request #115 from mathworks/logs
fix an issue in publish_mltbx workflow
2 parents 853140c + 02b39c9 commit 270ffb6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish_mltbx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ jobs:
127127
- name: Run commands
128128
env:
129129
MATLABPATH: OpenTelemetry-Matlab/tools
130-
OTEL_MATLAB_TOOLBOX_FOLDER: otel_matlab_install
130+
OTEL_MATLAB_TOOLBOX_FOLDER: ${{ env.OPENTELEMETRY_MATLAB_INSTALL }}
131131
OTEL_MATLAB_TOOLBOX_OUTPUT_FOLDER:
132132
OTEL_MATLAB_TOOLBOX_VERSION: ${{ steps.getversion.outputs.version }}
133133
uses: matlab-actions/run-command@v1

tools/packageMatlabInterface.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
opts.SupportedPlatforms.Win64 = true;
3030
opts.SupportedPlatforms.Maci64 = true;
3131
opts.SupportedPlatforms.Glnxa64 = true;
32-
opts.SupportedPlatforms.MatlabOnline = false;
32+
opts.SupportedPlatforms.MatlabOnline = true;
3333

3434
opts.MinimumMatlabRelease = "R2022a";
3535

0 commit comments

Comments
 (0)