Compare commits

..

No commits in common. "main" and "v0.1.4" have entirely different histories.
main ... v0.1.4

3 changed files with 4 additions and 14 deletions

View File

@ -141,24 +141,14 @@ jobs:
echo >> PKGBUILD
cat >> PKGBUILD << 'EOF'
prepare() {
cd "$srcdir"
tar xf "sula-alus-x86_64-unknown-linux-gnu.tar.gz"
}
package() {
cd "$srcdir"
cd "$srcdir/"
install -Dm755 sula-alus "${pkgdir}/usr/bin/sula-alus"
}
EOF
- name: Generate .SRCINFO
run: |
docker run --rm -v "$PWD":/pkg -w /pkg archlinux:base-devel bash -c '
useradd -m builder && \
echo "builder ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers && \
chown -R builder:builder /pkg && \
su builder -c "makepkg --printsrcinfo > .SRCINFO"
'
docker run --rm -v "$PWD":/pkg -w /pkg archlinux:base-devel bash -c 'pacman -Sy --noconfirm base-devel && su nobody -c "makepkg --printsrcinfo" > .SRCINFO'
- name: Publish AUR package
uses: KSXGitHub/github-actions-deploy-aur@v3.0.1
with:

2
Cargo.lock generated
View File

@ -142,7 +142,7 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
[[package]]
name = "sula-alus"
version = "0.1.5"
version = "0.1.4"
dependencies = [
"clap",
]

View File

@ -1,7 +1,7 @@
[package]
name = "sula-alus"
authors = ["Kristofers Solo <dev@kristofers.xyz>"]
version = "0.1.5"
version = "0.1.4"
edition = "2021"
description = "A CLI tool to encode strings and files using Sula-Alus encoding"
repository = "https://github.com/kristoferssolo/sula-alus"