Skip to content

debian: bump version in changelog. #4

debian: bump version in changelog.

debian: bump version in changelog. #4

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
jobs:
build_amd64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build Debian package (AMD64)
uses: dawidd6/[email protected]
with:
os_distribution: bookworm
cpu_architecture: amd64
- name: Release
uses: softprops/action-gh-release@v1
with:
files: ${{ github.workspace }}/*.deb
build_arm64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build Debian package (AARCH64)
uses: dawidd6/[email protected]
with:
os_distribution: bookworm
cpu_architecture: arm64
- name: Release
uses: softprops/action-gh-release@v1
with:
files: ${{ github.workspace }}/*.deb