ghaction_version_gen 0.16.0

Generate various version options as github action outputs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) 2021 Leandro Lisboa Penz <lpenz@lpenz.org>
// This file is subject to the terms and conditions defined in
// file 'LICENSE', which is part of this source code package.

use anyhow::Result;
use clap::Parser;

#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
pub struct Args {}

fn main() -> Result<()> {
    Args::parse();
    ghaction_version_gen::main(None)
}