Skip to content
This repository was archived by the owner on Nov 4, 2025. It is now read-only.

Build and Release

Build and Release #38

Workflow file for this run

---
name: Build and Release
on:
push:
paths:
- 'Makefile'
- 'Dockerfile'
create:
tags:
- '*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Run Make
run: make
- name: Create Release Draft and Upload Artifacts
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
draft: true
files: build/*.tar.bz2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}