fix: use extra tag sort for changelog action #8
Workflow file for this run
This file contains 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
name: Release | |
on: | |
push: | |
# release on tag push | |
tags: | |
- '*' | |
jobs: | |
build_images: | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
- dist: ubuntu | |
suite: bionic | |
major: 18 | |
arch: arm64 | |
- dist: ubuntu | |
suite: focal | |
major: 20 | |
arch: arm64 | |
- dist: ubuntu | |
suite: jammy | |
major: 22 | |
arch: arm64 | |
- dist: ubuntu | |
suite: noble | |
major: 24 | |
arch: arm64 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Checkout linux firmware | |
uses: actions/checkout@v4 | |
with: | |
repository: CirrusLogic/linux-firmware | |
path: git/linux-firmware | |
ref: cs35l56-20241031 | |
- name: Common dependencies | |
run: | | |
sudo apt-get -qq update | |
sudo apt-get install -y debootstrap qemu-user-static binfmt-support | |
- name: Build image | |
run: | | |
./.github/ci_build.sh ${{ matrix.dist }} ${{ matrix.suite }} | |
ls -lh deploy/ | |
- name: Upload image | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.dist }}-${{ matrix.suite }}-${{ matrix.arch }} | |
path: deploy/${{ matrix.dist }}-${{ matrix.major }}*${{ matrix.arch }}*.tar.xz | |
create_release: | |
name: Create Release | |
needs: [build_images] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Get version | |
id: get_version | |
run: | | |
echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV | |
echo ${{ env.VERSION }} | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# download all artifacts to project dir | |
- uses: actions/download-artifact@v4 | |
with: | |
path: rootfs | |
merge-multiple: true | |
- name: check artifacts | |
run: | | |
ls -l rootfs/ | |
- name: Generate changes file | |
uses: sarnold/gitchangelog-action@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN}} | |
extra_sort: True | |
- name: Create release | |
id: create_release | |
uses: softprops/action-gh-release@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ env.VERSION }} | |
name: Release ${{ env.VERSION }} | |
body_path: CHANGES.md | |
draft: false | |
prerelease: false | |
files: | | |
rootfs/*.tar.xz |