mirror of
https://github.com/TeFiLeDo/tree-owners.git
synced 2024-11-21 11:56:17 +01:00
initial release
This commit is contained in:
parent
57c60f2074
commit
5631784043
15
.github/workflows/rust.yml
vendored
15
.github/workflows/rust.yml
vendored
@ -38,17 +38,30 @@ on:
|
||||
tags:
|
||||
- "v*"
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: "ubuntu-latest"
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Check versions
|
||||
run: |
|
||||
CARGO_VER=$(cargo pkgid | sed "s/^.*#/v/")
|
||||
TAG_VER=${{ github.ref_name }}
|
||||
if [[ "$CARGO_VER" != "$TAG_VER" ]]; then exit 1; fi
|
||||
- name: Build
|
||||
run: cargo build --release --verbose
|
||||
- name: Run tests
|
||||
run: cargo test --release --verbose
|
||||
- uses: "marvinpinto/action-automatic-releases@latest"
|
||||
- name: Publish to crates.io
|
||||
run: cargo publish
|
||||
env:
|
||||
CARGO_REGISTRY_TOKEN: "${{ secrets.CRATES_IO_TOKEN }}"
|
||||
- name: Publish to GitHub
|
||||
uses: "marvinpinto/action-automatic-releases@latest"
|
||||
with:
|
||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
prerelease: false
|
||||
|
@ -5,12 +5,11 @@ edition = "2021"
|
||||
|
||||
authors = ["Adrian Wannenmacher <tfld@tfld.dev>"]
|
||||
license = "EUPL-1.2"
|
||||
repository = "https://github.com/TeFiLeDo/tree-owners"
|
||||
|
||||
description = "Find all owners (user and group) inside a directory tree."
|
||||
categories = ["command-line-utilities", "filesystem"]
|
||||
keywords = ["cli", "linux", "file", ]
|
||||
|
||||
publish = false
|
||||
keywords = ["cli", "linux", "file"]
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user