release-debian-bullseye #18
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
# Copyright 2021-2022 The MathWorks, Inc. | |
--- | |
name: "release-debian-bullseye" | |
# Build and release all artifacts is either triggered manually or on the first day of the month to | |
# ensure all artifacts are up-to-date with security and other patches to these distributions | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 5 1 * *' | |
# Wish I could use a matrix strategy here - tried to and discovered that there are limitations | |
# The strategy property is not supported in any job that calls a reusable workflow. | |
# from https://docs.github.com/en/actions/using-workflows/reusing-workflows#limitations | |
jobs: | |
build-debian-bullseye: | |
uses: ./.github/workflows/build-glibc-and-release.yaml | |
with: | |
dist-base: debian | |
dist-tag: bullseye |