chore(config): Update git commands and CI runner platform
publish / publish-tauri (appimage, 1, ubuntu-22.04, linux-x86_64) (release) Successful in 20m7s
publish / Build and publish Arch package (release) Failing after 3s
publish / publish-tauri (nsis, , windows-latest, windows-x86_64) (release) Canceled after 0s

Updated local development settings to include comprehensive Git status checks, improving developer workflow visibility. Additionally, the Arch package building job in the CI pipeline now targets archlinux runners for better environment parity during builds.

- Added multiple bash commands for detailed git logging and status retrieval
- Switched app builder workflow runner to archlinux
This commit is contained in:
2026-07-23 13:57:28 +02:00
parent 482d7857b5
commit e7e313b7d7
2 changed files with 7 additions and 2 deletions
+6 -1
View File
@@ -128,7 +128,12 @@
"Bash(find / -maxdepth 6 -iname \"config.yaml\" -path \"*runner*\")", "Bash(find / -maxdepth 6 -iname \"config.yaml\" -path \"*runner*\")",
"Read(//home/**)", "Read(//home/**)",
"Bash(getent passwd *)", "Bash(getent passwd *)",
"Bash(docker context *)" "Bash(docker context *)",
"Bash(git -C /mnt/data/Development/GitLite log --oneline -1 -- PKGBUILD)",
"Bash(git -C /mnt/data/Development/GitLite show --stat HEAD -- PKGBUILD)",
"Bash(git -C /mnt/data/Development/GitLite log --oneline -10)",
"Bash(git -C /mnt/data/Development/GitLite status)",
"Bash(git *)"
] ]
} }
} }
+1 -1
View File
@@ -158,7 +158,7 @@ jobs:
publish-arch: publish-arch:
name: Build and publish Arch package name: Build and publish Arch package
runs-on: ubuntu-22.04 runs-on: archlinux
environment: production environment: production
env: env:
MINIO_ENDPOINT: ${{ vars.MINIO_ENDPOINT }} MINIO_ENDPOINT: ${{ vars.MINIO_ENDPOINT }}