Skip to content

Commit 24c12d4

Browse files
author
DJTBOT
committed
Fix workflow yaml indentation
1 parent 84dda6e commit 24c12d4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/docker-image.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ jobs:
2929
id: version
3030
run: |
3131
rev=$(python - <<'PY'
32-
import re
33-
from pathlib import Path
34-
text = Path('nix/sources/clawdbot-source.nix').read_text()
35-
match = re.search(r'rev\s*=\s*"([^"]+)"', text)
36-
if not match:
37-
raise SystemExit('rev not found in nix/sources/clawdbot-source.nix')
38-
print(match.group(1))
32+
import re
33+
from pathlib import Path
34+
text = Path('nix/sources/clawdbot-source.nix').read_text()
35+
match = re.search(r'rev\s*=\s*"([^"]+)"', text)
36+
if not match:
37+
raise SystemExit('rev not found in nix/sources/clawdbot-source.nix')
38+
print(match.group(1))
3939
PY
40-
)
40+
)
4141
echo "rev=$rev" >> "$GITHUB_OUTPUT"
4242

4343
- name: Build image (aarch64-linux)

0 commit comments

Comments
 (0)