Fix pacman database update in package-linux job

The package-linux job was failing because it tried to install wget
without updating the pacman database first.

Fixed by:
- Added 'pacman -Sy --noconfirm' to update package database
- Then install wget with 'pacman -S --noconfirm wget'

This resolves the error:
'warning: database file for 'cachyos' does not exist (use '-Sy' to download)'
'error: target not found: wget'
This commit is contained in:
Zephyron
2025-09-22 15:04:44 +10:00
parent 24b8565543
commit 87ec67a473

View File

@@ -382,7 +382,8 @@ package-linux:
before_script:
- *get_version_info
- *create_release_notes
# Install AppImage tools
# Update package database and install AppImage tools
- pacman -Sy --noconfirm
- pacman -S --noconfirm wget
script:
- |