From e679c8415dc178483baae7f9667cdea47cf805b6 Mon Sep 17 00:00:00 2001 From: Anthony Ettinger Date: Wed, 23 Sep 2026 16:38:53 +0000 Subject: [PATCH] fix(release): upload .SRCINFO so the AUR step can find it With a working AUR key the Submit job got past the clone for the first time, and then died on: cp: cannot stat 'dist/packaging/aur/.SRCINFO': No such file or directory upload-artifact skips hidden files by default. The generator writes .SRCINFO, and the artifact silently dropped it (the downloaded v0.2.0 artifact's aur/ held only PKGBUILD). The AUR key failure on every earlier run stopped the job before it reached this line. `include-hidden-files: true` on the manifests upload. Co-Authored-By: Claude Opus 5.5 (1M context) --- .github/workflows/submit-packages.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/submit-packages.yml b/.github/workflows/submit-packages.yml index 4690cb1..3bb1493 100644 --- a/.github/workflows/submit-packages.yml +++ b/.github/workflows/submit-packages.yml @@ -59,6 +59,11 @@ jobs: with: name: package-manifests-${{ steps.version.outputs.version }} path: dist/packaging + # upload-artifact skips dotfiles unless told otherwise, and the AUR + # needs `aur/.SRCINFO`: without this the Submit job's `cp` fails on a + # file that was generated but never uploaded. Hidden behind the AUR + # key failure until v0.2.0. + include-hidden-files: true submit: name: Submit