mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 01:13:00 +02:00
Releases exposed the RAUC upgrade bundle only inside the per-arch tarball, and shipped no ready-to-flash Raspberry Pi image; users had to unpack the tarball or assemble an image from a separate bootloader. Upload output/images/*.pkg as its own artifact, and build an rpi64 SD card image in the aarch64 release leg before rootfs.squashfs is stripped from the tarball, combining it with the rpi64 bootloader from the latest-boot release. Publish both as release assets; the tarball still carries the .pkg too. Closes #1084 Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
108 lines
3.3 KiB
YAML
108 lines
3.3 KiB
YAML
# This job can be started by a git tag or using the workflow dispatch.
|
|
#
|
|
# The version string *must* be of the format: vYY.MM(-alphaN|-betaN|-rcN)
|
|
#
|
|
# In /etc/os-release this string is used for VERSION, VERSION_ID, and
|
|
# IMAGE_VERSION, with the 'v' prefix. In release artifact filenames,
|
|
# and zip file directory names, the 'v' is dropped per convention.
|
|
name: Release General
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v[0-9]*.*'
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
required: false
|
|
type: string
|
|
|
|
jobs:
|
|
set-version:
|
|
if: github.repository == 'kernelkit/infix' && startsWith(github.ref, 'refs/tags/')
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
version: ${{ steps.set-ver.outputs.version }}
|
|
steps:
|
|
- id: set-ver
|
|
run: |
|
|
if [ -n "${{ inputs.version }}" ]; then
|
|
ver=${{ inputs.version }}
|
|
else
|
|
ver=${GITHUB_REF#refs/tags/}
|
|
fi
|
|
echo "version=${ver}" >> $GITHUB_OUTPUT
|
|
|
|
build:
|
|
needs: set-version
|
|
uses: ./.github/workflows/build-release.yml
|
|
with:
|
|
version: ${{ needs.set-version.outputs.version }}
|
|
use_cache: true
|
|
|
|
release:
|
|
name: Release Infix ${{ github.ref_name }}
|
|
needs: build
|
|
runs-on: [self-hosted, release]
|
|
permissions:
|
|
contents: write
|
|
discussions: write
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
submodules: 'true'
|
|
|
|
- uses: kernelkit/actions/podman-cleanup@v1
|
|
|
|
- name: Set Release Variables
|
|
id: rel
|
|
run: |
|
|
if [ -n "${{ inputs.version }}" ]; then
|
|
ver=${{ inputs.version }}
|
|
else
|
|
ver=${GITHUB_REF#refs/tags/}
|
|
fi
|
|
echo "ver=${ver}" >> $GITHUB_OUTPUT
|
|
echo "cat=" >> $GITHUB_OUTPUT
|
|
if echo $ver | grep -qE 'v[0-9.]+(-alpha|-beta|-rc)[0-9]*'; then
|
|
echo "pre=true" >> $GITHUB_OUTPUT
|
|
echo "latest=false" >> $GITHUB_OUTPUT
|
|
elif echo $ver | grep -qE '^v[0-9]+\.[0-9]+(\.0)?$'; then
|
|
echo "pre=false" >> $GITHUB_OUTPUT
|
|
echo "latest=true" >> $GITHUB_OUTPUT
|
|
echo "cat=Releases" >> $GITHUB_OUTPUT
|
|
else
|
|
echo "pre=false" >> $GITHUB_OUTPUT
|
|
echo "latest=false" >> $GITHUB_OUTPUT
|
|
fi
|
|
echo "pre=${{ steps.rel.outputs.pre }}"
|
|
echo "latest=${{ steps.rel.outputs.latest }}"
|
|
|
|
- uses: actions/download-artifact@v8
|
|
with:
|
|
pattern: "artifact-*"
|
|
merge-multiple: true
|
|
|
|
- name: Extract ChangeLog entry ...
|
|
run: |
|
|
cat doc/ChangeLog.md | ./utils/extract-changelog.sh > release.md
|
|
cat release.md
|
|
|
|
- uses: ncipollo/release-action@v1
|
|
with:
|
|
name: Infix ${{ github.ref_name }}
|
|
prerelease: ${{ steps.rel.outputs.pre }}
|
|
makeLatest: ${{ steps.rel.outputs.latest }}
|
|
discussionCategory: ${{ steps.rel.outputs.cat }}
|
|
bodyFile: release.md
|
|
artifacts: "*.tar.gz,*.qcow2,*.pkg,*.img.xz"
|
|
|
|
- name: Summary
|
|
run: |
|
|
cat <<EOF >> $GITHUB_STEP_SUMMARY
|
|
# Infix ${{ github.ref_name }} Released! :rocket:
|
|
|
|
For the public download links of this release, please see:
|
|
<https://github.com/kernelkit/infix/releases/tag/${{ github.ref_name }}>
|
|
EOF
|