Compare commits
35 commits
Author | SHA1 | Date | |
---|---|---|---|
|
59ff61bcf1 | ||
|
fd4efce251 | ||
92351bfec8 | |||
|
6110d36adc | ||
|
31c5dac6cb | ||
|
e06ae70b20 | ||
|
69b8f008a9 | ||
|
30d4e3a037 | ||
|
b25849c0bf | ||
|
6d19281100 | ||
|
e4d0da778b | ||
|
1133be9a5a | ||
|
f6dc9a004a | ||
|
8bbc1f7e1d | ||
|
8e403c87bd | ||
c0b2ff6074 | |||
884d8d504c | |||
1ad7f8bf03 | |||
|
9d76b9268d | ||
7d84eaa186 | |||
fe468ffde0 | |||
ec206cb527 | |||
4867f64768 | |||
4d642d07d2 | |||
9001aa5369 | |||
25f2967493 | |||
5a7c5e49fe | |||
997f9261aa | |||
06205bc608 | |||
6baf34bb80 | |||
595f353ff3 | |||
99f73b443e | |||
7699f6c0d9 | |||
d9d1f7c846 | |||
439f5eb880 |
4 changed files with 22 additions and 8 deletions
7
.github/workflows/aur-release.yml
vendored
7
.github/workflows/aur-release.yml
vendored
|
@ -9,15 +9,16 @@ jobs:
|
||||||
aur-publish:
|
aur-publish:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Publish AUR package
|
- name: Publish AUR package
|
||||||
uses: anas-elgarhy/aur-release-action@v2.6
|
uses: anas-elgarhy/aur-release-action@v4.1
|
||||||
with:
|
with:
|
||||||
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
pkgbuild_path: archpackage/PKGBUILD # Use this if the PKGBUILD file is not in the root directory
|
pkgbuild_path: archpackage/PKGBUILD # Use this if the PKGBUILD file is not in the root directory
|
||||||
aur_submodule_path: archpackage/aarty
|
# aur_submodule_path: archpackage/aarty
|
||||||
git_username: Anas Elgarhy # Use this if you want to change the git username (recommended)
|
git_username: Anas Elgarhy # Use this if you want to change the git username (recommended)
|
||||||
git_email: anas.elgarhy.dev@gmail.com # Use this if you want to change the git email (recommended)
|
git_email: anas.elgarhy.dev@gmail.com # Use this if you want to change the git email (recommended)
|
||||||
commit_message: UpUp Update %FILENAME% to %VERSION% yoo # Use this if you want to change the commit message
|
commit_message: UpUp Update %FILENAME% to %VERSION% yoo # Use this if you want to change the commit message
|
||||||
|
try_build_and_install: false
|
||||||
|
|
7
.mergify.yml
Normal file
7
.mergify.yml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
pull_request_rules:
|
||||||
|
- name: Automatic merge on approval
|
||||||
|
conditions:
|
||||||
|
- "#approved-reviews-by>=1"
|
||||||
|
actions:
|
||||||
|
merge:
|
||||||
|
method: merge
|
10
Cargo.toml
10
Cargo.toml
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "aarty"
|
name = "aarty"
|
||||||
version = "0.3.1"
|
version = "0.4.8"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Anas Elgarhy <anas.elgarhy.dev@gmail.com>"]
|
authors = ["Anas Elgarhy <anas.elgarhy.dev@gmail.com>"]
|
||||||
description = "A simple CLI tool to convert the images to ASCII art"
|
description = "A simple CLI tool to convert the images to ASCII art"
|
||||||
|
@ -31,8 +31,8 @@ exclude = ["images/*"]
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = { version = "4.0.12-rc.3", features = ["derive"] }
|
clap = { version = "4.3.2", features = ["derive"] }
|
||||||
colored = "2.0.0"
|
colored = "2.0.0"
|
||||||
image = "0.24.4"
|
image = "0.24.6"
|
||||||
log = "0.4.17"
|
log = "0.4.18"
|
||||||
pretty_env_logger = "0.4.0"
|
pretty_env_logger = "0.5.0"
|
||||||
|
|
6
renovate.json
Normal file
6
renovate.json
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": [
|
||||||
|
"config:base"
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in a new issue