-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (26 loc) · 971 Bytes
/
Copy pathrelease.yml
File metadata and controls
28 lines (26 loc) · 971 Bytes
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
name: Release
# Package + publish on a version tag. The matrix lives here (the caller owns it);
# each leg calls the single-combo reusable helper. The publish feed is derived from
# distro-release/distro-channel. The tag must equal the avocado.yaml version.
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+.[0-9]+-*'
workflow_dispatch:
jobs:
publish:
strategy:
fail-fast: false
matrix:
include:
- { target: qemux86-64, distro-release: "2026", distro-channel: next }
- { target: qemux86-64, distro-release: "2024", distro-channel: next }
uses: avocado-linux/actions/.github/workflows/extension-release.yml@v1
with:
target: ${{ matrix.target }}
distro-release: ${{ matrix.distro-release }}
distro-channel: ${{ matrix.distro-channel }}
secrets:
connect-token: ${{ secrets.AVOCADO_CONNECT_TOKEN }}
connect-org: ${{ secrets.AVOCADO_CONNECT_ORG }}