Skip to content

Commit

Permalink
build: release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Joxit committed Oct 16, 2023
1 parent 562e6d0 commit e776a02
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
body_path: RELEASE_NOTE.md
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
- name: Upload Release Binary
id: upload-release-binary
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -53,7 +53,7 @@ jobs:
asset_content_type: application/octet-stream
asset_name: runtasktic-linux-x86_64
- name: Upload SHA256 Asset
id: upload-release-asset
id: upload-release-sha256
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "runtasktic"
version = "0.6.0"
version = "1.0.0"
authors = ["Jones Magloire @Joxit"]
description = "Command-line task management tool for execution of regular long sequential or parallel tasks."
edition = "2018"
Expand Down
38 changes: 36 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,28 @@ Describe your tasks in a YAML file, execute all of them with runtasktic in foreg
- when you need an alternative to nohup
- when you need an alternative to crontab

## How to install runtasktic ?

You can install runtasktic via command line or by downloading the prebuild version on github.

```bash
mkdir ~/bin
curl -sSL https://github.com/Joxit/runtasktic/releases/download/$(curl -sSL https://api.github.com/repos/Joxit/runtasktic/releases/latest | jq -r '.tag_name')/runtasktic-linux-x86_64 > ~/bin/runtasktic
chmod +x ~/bin/runtasktic
```

If you are a rust user, you can use cargo to install runtasktic.

```bash
cargo install runtasktic
```

If you already installed runtasktic, you can updated it with commandline

```bash
runtasktic update
```

## CLI

```
Expand All @@ -25,10 +47,11 @@ Command-line task management tool for execution of regular long sequential or pa
Usage: runtasktic <COMMAND>
Commands:
run Run tasks
run Run all tasks from your configuration in background or foreground
dot Export the configuration to a graph (needs graphviz/dot)
exec Execute a single command with notification
exec Execute a single command with notification in background or foreground
completion Generate completion script for your shell
update Self update of the binary
help Print this message or the help of the given subcommand(s)
Options:
Expand Down Expand Up @@ -130,6 +153,17 @@ Options:
-h, --help Print help
```

### Update: Update the binary

```
Self update of the binary
Usage: runtasktic update
Options:
-h, --help Print help
```

## Configuration

```yaml
Expand Down

0 comments on commit e776a02

Please sign in to comment.