-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(ci): automated builds via ghw ci
- Loading branch information
Showing
3 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### ⚙️ Miscellaneous Tests | ||
|
||
- *(config)* Testing github ci for different builds | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "rustycli" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
edition = "2021" | ||
authors = [ "PwnWriter < [email protected] >" ] | ||
description = "🦊 Access the rust playground right in terminal." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Creating a Release | ||
|
||
[GitHub](https://github.com/pwnwriter/rustycli/releases) and [crates.io](https://crates.io/crates/rustycli) releases are automated via [GitHub actions](.github/workflows/cd.yml) and triggered by pushing a tag. | ||
|
||
1. Run the [release script](./release.sh): `./release.sh v[X.Y.Z]` (requires [rustycli](https://github.com/pwnwriter/rustycli) for changelog generation) | ||
2. Push the changes: `git push` | ||
3. Check if [Continuous Integration](https://github.com/pwnwriter/rustycli/actions) workflow is completed successfully. | ||
4. Push the tags: `git push --tags` | ||
5. Wait for [Continuous Deployment](https://github.com/pwnwriter/rustycli/actions) workflow to finish. |