Skip to content

Commit 0c53a8b

Browse files
committed
fix: workflow issues
1 parent 3ccac93 commit 0c53a8b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ jobs:
6565
6666
- name: Create AppImage
6767
run: |
68-
curl -L https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -o appimagetool
69-
chmod +x appimagetool
70-
./appimagetool AppDir
68+
wget -c "https://github.com/AppImage/AppImageKit/releases/download/13/appimagetool-x86_64.AppImage"
69+
chmod +x appimagetool-x86_64.AppImage
70+
./appimagetool-x86_64.AppImage AppDir
7171
mkdir -p dist
7272
mv EduCollector-x86_64.AppImage dist/
7373

.github/workflows/build-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
3030
- name: Build Windows App
3131
run: |
32-
pyinstaller --noconfirm --onefile --windowed --name EduCollector ^
33-
--add-data "src/themes;themes" ^
32+
pyinstaller --noconfirm --onefile --windowed --name EduCollector `
33+
--add-data "src/themes;themes" `
3434
src/main.py
3535
3636
- name: Upload to GitHub Releases

0 commit comments

Comments
 (0)