Skip to content
This repository has been archived by the owner on Jul 29, 2023. It is now read-only.

Commit

Permalink
preparing release workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Guy Margalit <[email protected]>
  • Loading branch information
guymguym committed May 12, 2022
1 parent 5077b3e commit 6c23cc6
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: CI

on:
workflow_dispatch:
push:
branches:
- main
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
tags:
- "*"
workflow_dispatch:

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -36,7 +35,6 @@ jobs:
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
target/debug/s3
target/debug/s3d
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[package]

name = "s3d"
version = "0.0.1-alpha.5"
version = "0.0.1"
authors = ["guymguym"]
edition = "2021"
description = "s3d is a daemon for data access using S3 API. A modern cousin of nfsd, ftpd, httpd, etc. It is designed to be simple, tiny, blazing fast, and portable in order to fit in a variety of environments from developer machines, containers, kubernetes, edge devices, etc."
Expand Down
1 change: 1 addition & 0 deletions src/bin/s3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ pub async fn main() -> anyhow::Result<()> {
#[derive(clap::Parser, Debug, Clone)]
#[clap(name = "s3")]
#[clap(about = "S3 CLI tool for applications or services that need to access S3 buckets (with/out the s3d daemon)")]
#[clap(version = clap::crate_version!())]
#[clap(setting = clap::AppSettings::DeriveDisplayOrder)]
pub struct CLI {
/// subcommand
Expand Down
1 change: 1 addition & 0 deletions src/bin/s3d.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ pub async fn main() -> anyhow::Result<()> {
#[derive(clap::Parser, Debug, Clone)]
#[clap(name = "s3d")]
#[clap(about = clap::crate_description!())]
#[clap(version = clap::crate_version!())]
#[clap(setting = clap::AppSettings::DeriveDisplayOrder)]
pub struct Daemon {}

Expand Down

0 comments on commit 6c23cc6

Please sign in to comment.