Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Calling setup-matlab twice in a single workflow causes an error #130

Open
mcafaro opened this issue Jan 16, 2025 · 0 comments
Open

Calling setup-matlab twice in a single workflow causes an error #130

mcafaro opened this issue Jan 16, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@mcafaro
Copy link
Member

mcafaro commented Jan 16, 2025

If you attempt to call setup-matlab twice in a single workflow, to set up two different releases of MATLAB for instance, the second call will result in an error saying "Destination file path /home/runner/work/_temp/mpm already exists".

Reproduction workflow:

name: MATLAB
on: [push]
jobs:
  my-job:
    runs-on: ubuntu-latest
    steps:
      - name: Check out repository
        uses: actions/checkout@v4
        
      - name: Set up MATLAB R2024b
        uses: matlab-actions/setup-matlab@v2
        with:
          release: R2024b

      - name: Set up MATLAB R2024a
        uses: matlab-actions/setup-matlab@v2
        with:
          release: R2024a

Error:
Image

@mcafaro mcafaro added the bug Something isn't working label Jan 16, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant