Skip to content

Commit 01ffdcf

Browse files
committed
Signed-off-by: Günter Neiß <gneiss@web.de>
1 parent be705a0 commit 01ffdcf

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/LinuxBuild.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ jobs:
1919
steps:
2020
- name: Checkout
2121
uses: actions/checkout@v4
22+
- name: Check for AppImage
23+
run: |
24+
set -x
25+
set -v
26+
find / -iname "*.AppImage"
2227
- name: Install Node.js
2328
uses: actions/setup-node@v4
2429
with:
@@ -42,19 +47,13 @@ jobs:
4247
run: |
4348
set -x
4449
set -v
45-
mkdir -p /etc/apt/keyrings/
46-
mkdir -p /etc/apt/sources.list.d/
47-
cp .github/tools/githubcli-archive-keyring.gpg /etc/apt/keyrings/githubcli-archive-keyring.gpg
48-
cp .github/tools/github-cli.sources /etc/apt/sources.list.d/github-cli.sources
49-
apt update
50-
apt install -y gh jq
5150
npx node-gyp install
5251
yarn install
5352
yarn --cwd arduino-ide-extension build
5453
yarn --cwd electron-app rebuild
5554
yarn --cwd electron-app build
5655
yarn --cwd electron-app package
57-
find . -iname "*.AppImage"
56+
find / -iname "*.AppImage"
5857
- name: Install gh and jq
5958
env:
6059
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)