File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 4949 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5050
5151 - name : Upload artifacts
52- uses : actions/upload-artifact@v3
52+ uses : actions/upload-artifact@v4
5353 with :
5454 path : |
5555 build/*
Original file line number Diff line number Diff line change 1+ # Copyright 2025 The MathWorks, Inc.
2+ ---
3+ name: "release-all-amazonlinux"
4+
5+ # Build and release all artifacts is either triggered manually or on the first day of the month to
6+ # ensure all artifacts are up-to-date with security and other patches to these distributions
7+ on:
8+ workflow_dispatch:
9+
10+ # Wish I could use a matrix strategy here - tried to and discovered that there are limitations
11+ # The strategy property is not supported in any job that calls a reusable workflow.
12+ # from https://docs.github.com/en/actions/using-workflows/reusing-workflows#limitations
13+ jobs:
14+ build-amazonlinux-2:
15+ uses: ./.github/workflows/build-glibc-and-release.yaml
16+ with:
17+ dist-base: amazonlinux2
18+ dist-tag: 2
19+ dockerfile: Dockerfile.al2
You can’t perform that action at this time.
0 commit comments