-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (51 loc) · 1.66 KB
/
Copy pathrelease-public.yml
File metadata and controls
57 lines (51 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright 2026 The MathWorks, Inc.
name: Release Publish
on:
push:
tags: ["v*"]
# Run at 00:00 on every Monday (1st Day of the Week) (See: crontab.guru)
schedule:
- cron: '0 0 * * 1'
workflow_dispatch:
permissions:
contents: read
packages: write
jobs:
# ----------------------------------------------------------------
# MATLAB IMAGES (5 Releases x 2 DBRs)
# ----------------------------------------------------------------
matlab:
name: MATLAB ${{ matrix.matlab_release }} (DBR ${{ matrix.databricks_runtime }})
strategy:
fail-fast: false
matrix:
matlab_release: ['R2024a', 'R2024b', 'R2025a', 'R2025b', 'R2026a']
databricks_runtime: ['17.3', '16.4']
include:
- matlab_release: 'R2024b'
databricks_runtime: '17.3'
matlab_update: 'U7'
- matlab_release: 'R2024b'
databricks_runtime: '16.4'
matlab_update: 'U7'
uses: ./.github/workflows/docker-pipeline.yml
with:
image_type: 'matlab'
matlab_release: ${{ matrix.matlab_release }}
matlab_update: ${{ matrix.matlab_update }}
databricks_runtime: ${{ matrix.databricks_runtime }}
run_integration: true
promote: true
secrets: inherit
# ----------------------------------------------------------------
# RUNTIME IMAGES (1 Release x 1 DBR)
# ----------------------------------------------------------------
runtime:
name: MATLAB Runtime R2026a (DBR 17.3)
uses: ./.github/workflows/docker-pipeline.yml
with:
image_type: 'runtime'
matlab_release: 'R2026a'
databricks_runtime: '17.3'
promote: true
secrets: inherit