Skip to content

Commit 28ce0e5

Browse files
committed
Fix: Solve code quality issues
1 parent a23441f commit 28ce0e5

3 files changed

Lines changed: 15 additions & 2 deletions

File tree

.github/actions/build-rootfs/action.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
---
12
name: 'Build Aleph Runtime Rootfs'
23
description: 'Builds the Aleph runtime rootfs for a specified OS'
4+
5+
36
inputs:
47
os:
58
description: 'Operating system to build (e.g., debian-12)'
@@ -8,13 +11,17 @@ inputs:
811
artifact-name:
912
description: 'Name of the artifact to upload'
1013
required: true
14+
15+
1116
outputs:
1217
artifact-name:
1318
description: 'Name of the artifact'
1419
value: ${{ inputs.artifact-name }}
1520
artifact-path:
1621
description: 'Path to the built rootfs'
1722
value: runtimes/aleph-${{ inputs.os }}-python/rootfs.squashfs
23+
24+
1825
runs:
1926
using: 'composite'
2027
steps:

.github/workflows/release-diagnostic-vm.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
name: "Release Diagnostic VM"
3+
4+
35
on:
46
workflow_dispatch:
57
inputs:
@@ -13,6 +15,7 @@ on:
1315
required: false
1416
type: string
1517

18+
1619
jobs:
1720
build_and_deploy_diagnostic_vm:
1821
name: "Build and Deploy Diagnostic VM"
@@ -69,6 +72,6 @@ jobs:
6972
uses: actions/upload-artifact@v4
7073
with:
7174
name: diagnostic-vm-release
72-
path: |
75+
path: |-
7376
examples/diagnostic_vm.zip
7477
runtimes/aleph-debian-12-python/rootfs.squashfs

.github/workflows/release-runtime.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
name: "Release Runtime"
3+
4+
35
on:
46
workflow_dispatch:
57
inputs:
@@ -21,6 +23,7 @@ on:
2123
default: 'Aleph VM Runtime'
2224
type: string
2325

26+
2427
jobs:
2528
build_and_release_runtime:
2629
name: "Build and Release Runtime"
@@ -59,7 +62,7 @@ jobs:
5962
echo "Description: ${{ inputs.description }}"
6063
6164
- name: Create release summary
62-
run: |
65+
run: |-
6366
echo "# Runtime Release Summary" >> $GITHUB_STEP_SUMMARY
6467
echo "" >> $GITHUB_STEP_SUMMARY
6568
echo "- **OS**: ${{ inputs.os }}" >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)