Skip to content

Commit 948f1a7

Browse files
authored
Update build.yml
1 parent 1baf3b4 commit 948f1a7

1 file changed

Lines changed: 5 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
build:
1313
name: Build
1414
#https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
15-
#runs-on: ubuntu-latest # Not working with ubuntu-latest / ubuntu-22.04
15+
runs-on: ubuntu-latest # Not working with ubuntu-latest / ubuntu-22.04
1616
# Error: /lib/x86_64-linux-gnu/libgio-2.0.so.0: undefined symbol: g_module_open_full
17-
runs-on: ubuntu-22.04
17+
#runs-on: ubuntu-22.04
1818
steps:
1919
- uses: actions/checkout@master
2020
- name: install fuse and libfuse2
@@ -36,7 +36,7 @@ jobs:
3636
#wget https://github.com/AppImageCommunity/pkg2appimage/releases/download/continuous/pkg2appimage--x86_64.AppImage
3737
wget https://github.com/AppImageCommunity/pkg2appimage/releases/download/continuous/pkg2appimage-1eceb30-x86_64.AppImage -O pkg2appimage--x86_64.AppImage
3838
chmod +x pkg2appimage--x86_64.AppImage
39-
ls -lah
39+
pwd; ls -lah
4040
4141
- name: Make AppImage
4242
run: |
@@ -46,19 +46,14 @@ jobs:
4646
- name: List files and rename AppImage
4747
run: |
4848
set -x
49-
pwd
50-
ls -lah
49+
pwd; ls -lah
5150
cd out/
5251
fileName=$(ls KDiff3*.AppImage)
5352
echo "fileName: $fileName"
5453
fileNameNew=$(echo "$fileName" | sed 's/.AppImage//')
5554
mv "$fileName" "${fileNameNew}-1_JB.AppImage"
5655
md5sum "${fileNameNew}-1_JB.AppImage" > "${fileNameNew}-1_JB.AppImage.md5"
57-
ls -lah
58-
59-
# Build - Errror: Resource not accessible by integration
60-
# Change Settings -> Actions -> General -> Workflow Permissions to allow read and write:
61-
# https://github.com/actions/first-interaction/issues/10#issuecomment-1506118886
56+
pwd; ls -lah
6257
6358
# https://github.com/marketplace/actions/upload-to-github-release
6459
- uses: xresloader/upload-to-github-release@main

0 commit comments

Comments
 (0)