Skip to content

Commit 081a787

Browse files
committed
fix(ci): mkdir -p /var/lib/dbus before writing machine-id
The flatpak-github-actions container does not have /var/lib/dbus, causing tee to fail with 'No such file or directory'. Create the directory before writing the machine-id. Assisted-by: Claude Sonnet 4.6 via OpenCode
1 parent c70a6f1 commit 081a787

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ jobs:
10571057
- name: Ensure machine-id exists
10581058
if: steps.arch-check.outputs.skip != 'true'
10591059
run: |
1060-
dbus-uuidgen | tee /var/lib/dbus/machine-id
1060+
mkdir -p /var/lib/dbus && dbus-uuidgen | tee /var/lib/dbus/machine-id
10611061
10621062
- name: Install ${{ matrix.app }}
10631063
if: steps.arch-check.outputs.skip != 'true'

0 commit comments

Comments
 (0)