Skip to content

Commit

Permalink
Merge pull request #60 from refcell/refcell/fix-github-release
Browse files Browse the repository at this point in the history
fix(ci): Generic Github Release Workflow
  • Loading branch information
refcell authored Oct 26, 2023
2 parents 95b822e + 02e8e6e commit 33db32a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Build the target directory
run: cargo build --release
- name: Generate the Release Tarball
run: tar --directory=target/release -cf release.tar.gz amble
run: tar --directory=target/release -cf release.tar.gz $(ls -U target/release/ | head -1)
- uses: ncipollo/release-action@v1
with:
artifacts: "release.tar.gz"
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/validate-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,3 @@ jobs:
crate: semver-util
- name: Validate semvers
run: semver cmp ${{ env.PACKAGEV }} gt ${{ env.VERSION }} || exit 1

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
["package"]
name = "amble"
description = "First class, scalable rust project generator with batteries included."
version = "0.1.27"
version = "0.1.28"
edition = "2021"
license = "MIT"
authors = ["refcell"]
rust-version = "1.73"
keywords = ["amble", "generator", "template", "scaffold", "cli"]
categories = ["command-line-utilities"]
homepage = "https://github.com/refcell/amble"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
[![License]][mit-license]
[![Docs]][Docs-rs]
[![Latest Version]][crates.io]
[![rustc 1.31+]][Rust 1.31]
[![rustc 1.70+]][Rust 1.70]

[CI Build Status]: https://img.shields.io/github/actions/workflow/status/refcell/amble/ci.yml?branch=main&label=build
[Tag Build Status]: https://img.shields.io/github/actions/workflow/status/refcell/amble/tag.yml?branch=main&label=tag
[Release]: https://img.shields.io/github/actions/workflow/status/refcell/amble/release.yml?branch=main&label=release
[actions]: https://github.com/refcell/amble/actions?query=branch%3Amain
[Latest Version]: https://img.shields.io/crates/v/amble.svg
[crates.io]: https://crates.io/crates/amble
[rustc 1.31+]: https://img.shields.io/badge/rustc_1.31+-lightgray.svg
[Rust 1.31]: https://blog.rust-lang.org/2018/12/06/Rust-1.31-and-rust-2018.html
[rustc 1.70+]: https://img.shields.io/badge/rustc_1.70+-lightgray.svg?label=msrv
[Rust 1.70]: https://blog.rust-lang.org/2023/06/01/Rust-1.70.0.html
[License]: https://img.shields.io/badge/license-MIT-7795AF.svg
[mit-license]: https://github.com/refcell/amble/blob/main/LICENSE.md
[Docs-rs]: https://docs.rs/amble/
Expand Down

0 comments on commit 33db32a

Please sign in to comment.