assign UUID "fd5ea185-e475-4416-af11-1c26cb6212b2" #9
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Upload stdlib.mltbx to GitHub Release | |
| on: | |
| release: | |
| push: | |
| paths: | |
| - ".github/workflows/package.yml" | |
| # Allows running this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| concurrency: | |
| group: "package" | |
| cancel-in-progress: false | |
| jobs: | |
| package: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| release: [R2026a] | |
| steps: | |
| - name: Install MATLAB | |
| timeout-minutes: 5 | |
| uses: matlab-actions/setup-matlab@v3 | |
| with: | |
| release: ${{ matrix.release }} | |
| cache: true | |
| - uses: actions/checkout@v7 | |
| - name: generate package | |
| if: github.ref_type == 'tag' | |
| uses: matlab-actions/run-build@v3 | |
| with: | |
| tasks: package | |
| - name: Release artifact users will see | |
| uses: softprops/action-gh-release@v3 | |
| if: github.ref_type == 'tag' | |
| with: | |
| files: stdlib.mltbx |