Update workflow

This commit is contained in:
2026-02-06 00:41:42 +03:00
parent 8a7f3eaf16
commit 55c97eb708
9 changed files with 239 additions and 11 deletions

View File

@@ -0,0 +1,23 @@
name: "Construct manifests using pkgdev"
description: "Construct manifest using pkgdev"
runs:
using: composite
steps:
- name: Cache pkgdev
uses: actions/cache@v5
with:
path: |
~/.cache/pkgcore
~/.cache/pkgcheck
~/.cache/distfiles
key: pkgdev
- name: Run pkgdev manifest
uses: docker://git.ratigorsk-12.ru/gentoo/pkgdev-docker:master
with:
args: >
-c '
set -euo pipefail
pmaint sync gentoo
pkgdev manifest -d ~/.cache/distfiles
'