Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Nali Release
name: Build Koompi Release
on:
push:
tags:
Expand Down Expand Up @@ -42,8 +42,8 @@ jobs:
- run: docker build --platform=linux/${{ matrix.platform.docker }} -o . .
- uses: actions/upload-artifact@v3
with:
name: nali-${{ matrix.platform.arch }}
path: nali.tar.zst
name: koompi-${{ matrix.platform.arch }}
path: koompi.tar.zst

release:
name: Create GitHub Release
Expand All @@ -59,7 +59,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ needs.get-version.outputs.version }}
release_name: Nali v${{ needs.get-version.outputs.version }}
release_name: Koompi v${{ needs.get-version.outputs.version }}
draft: true
prerelease: false

Expand All @@ -73,13 +73,13 @@ jobs:
steps:
- uses: actions/download-artifact@v3
with:
name: nali-${{ matrix.arch }}
name: koompi-${{ matrix.arch }}
- uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.release.outputs.release-url }}
asset_name: nali-${{ needs.get-version.outputs.version }}-${{ matrix.arch }}.tar.zst
asset_path: nali.tar.zst
asset_name: koompi-${{ needs.get-version.outputs.version }}-${{ matrix.arch }}.tar.zst
asset_path: koompi.tar.zst
asset_content_type: application/tar+zstd

13 changes: 2 additions & 11 deletions .github/workflows/nali.yml → .github/workflows/koompi.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Nali CI
name: Koompi CI

on:
push:
Expand Down Expand Up @@ -48,16 +48,7 @@ jobs:
image: archlinux
steps:
- name: Install Packages
run: pacman -Syu rust curl clang git base-devel libarchive meson asciidoc doxygen fakechroot pkgconf --noconfirm --needed

- name: Install Pacman-git
run: |
git clone https://aur.archlinux.org/pacman-git
chown -R nobody pacman-git
cd pacman-git
sudo -u nobody makepkg --nocheck
sudo -u nobody makepkg --packagelist > list
yes | pacman -U $(cat list)
run: pacman -Syu rust clang gcc git libarchive pkgconf sudo fakeroot --noconfirm --needed

- name: Checkout
uses: actions/checkout@v2
Expand Down
84 changes: 42 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "nali"
version = "2.1.0"
authors = ["morganamilo <morganamilo@archlinux.org>"]
name = "koompi"
version = "1.0.0"
authors = ["morganamilo <morganamilo@archlinux.org>", "koompi <dev@koompi.org>"]
edition = "2021"

description = "User-friendly package manager for KhmerOS - a fork of paru"
homepage = "https://github.com/koompi/nali"
repository = "https://github.com/koompi/nali"
description = "User-friendly package manager for KhmerOS - based on paru"
homepage = "https://github.com/koompi/koompi"
repository = "https://github.com/koompi/koompi"
documentation = "https://docs.rs/paru"
license = "GPL-3.0"
keywords = ["archlinux", "arch", "alpm", "pacman", "aur"]
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN meson setup \
RUN ninja -C build
RUN ninja -C build install

WORKDIR /nali
WORKDIR /koompi

ENV RUSTUP_HOME=/usr/local/rustup \
CARGO_HOME=/usr/local/cargo \
Expand All @@ -37,4 +37,4 @@ COPY ../ .
RUN --mount=type=tmpfs,target=/usr/local/cargo/git ./scripts/dist

FROM scratch AS export-stage
COPY --from=build-stage /nali/nali.tar.zst /
COPY --from=build-stage /koompi/koompi.tar.zst /
Loading
Loading