fix: fixing casing for appimage

This commit is contained in:
Chubby Granny Chaser
2025-05-11 19:04:15 -07:00
committed by GitHub
parent 43e565bcc9
commit e901df9ac7
3 changed files with 2 additions and 3 deletions

View File

@@ -99,4 +99,4 @@ jobs:
dist/*.yml
dist/*.blockmap
dist/*.pacman
dist/*.appimage
dist/*.AppImage

View File

@@ -118,6 +118,5 @@ jobs:
dist/*.yml
dist/*.blockmap
dist/*.pacman
dist/*.appimage
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -20,7 +20,7 @@ const s3 = new S3Client({
const dist = path.resolve(__dirname, "..", "dist");
const extensionsToUpload = [".deb", ".exe", ".pacman", ".appimage"];
const extensionsToUpload = [".deb", ".exe", ".pacman", ".AppImage"];
fs.readdir(dist, async (err, files) => {
if (err) throw err;