Compare commits
No commits in common. "master" and "0.4.0" have entirely different histories.
4 changed files with 8 additions and 21 deletions
6
.github/workflows/aur-release.yml
vendored
6
.github/workflows/aur-release.yml
vendored
|
@ -9,15 +9,15 @@ jobs:
|
|||
aur-publish:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Publish AUR package
|
||||
uses: anas-elgarhy/aur-release-action@v4.1
|
||||
uses: anas-elgarhy/aur-release-action@v3.5
|
||||
with:
|
||||
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
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_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
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
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]
|
||||
name = "aarty"
|
||||
version = "0.4.8"
|
||||
version = "0.4.0"
|
||||
edition = "2021"
|
||||
authors = ["Anas Elgarhy <anas.elgarhy.dev@gmail.com>"]
|
||||
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
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4.3.2", features = ["derive"] }
|
||||
clap = { version = "4.0.12-rc.3", features = ["derive"] }
|
||||
colored = "2.0.0"
|
||||
image = "0.24.6"
|
||||
log = "0.4.18"
|
||||
pretty_env_logger = "0.5.0"
|
||||
image = "0.24.4"
|
||||
log = "0.4.17"
|
||||
pretty_env_logger = "0.4.0"
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:base"
|
||||
]
|
||||
}
|
Loading…
Reference in a new issue