1
0
Fork 0
inotify-info/.github/workflows/release.yaml
Daniel Baumann 725962f958
Merging upstream version 0.0.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-05 15:17:18 +01:00

22 lines
530 B
YAML

---
name: release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Archive
run: make inotify-info-${{ github.ref_name }}.tar.gz
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/v')
with:
files: inotify-info-${{ github.ref_name }}.tar.gz
generate_release_notes: true
draft: true
prerelease: true