Files
labca/.github/workflows/release.yml
2025-12-04 09:06:19 +01:00

64 lines
1.6 KiB
YAML

name: Create Release
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
create-release:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
GO_VERSION:
- 1.25.2
steps:
- name: Checkout
uses: actions/checkout@v5
with:
persist-credentials: false
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.GO_VERSION }}
- name: APT Install
id: aptInstall
run: |
sudo bash -c 'cat > /etc/apt/sources.list.d/arm64.sources <<EOF
Types: deb
URIs: http://ports.ubuntu.com/ubuntu-ports/
Suites: noble noble-updates noble-backports noble-security
Components: main restricted universe multiverse
Architectures: arm64
Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg
EOF'
sudo dpkg --add-architecture arm64
sudo apt-get update
sudo apt-get -y install build-essential debhelper fakeroot crossbuild-essential-arm64
- name: Build Debian packages
id: make_debian
run: |
make debian
make debian-arm64
- name: Create changelog text
id: changelog
uses: loopwerk/tag-changelog@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Create release
uses: ncipollo/release-action@v1
with:
artifacts: "release/*"
body: ${{ steps.changelog.outputs.changes }}
draft: true
token: ${{ secrets.GITHUB_TOKEN }}