We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e45571d commit b850d79Copy full SHA for b850d79
1 file changed
.github/workflows/build-process.yml
@@ -38,6 +38,16 @@ jobs:
38
arguments: --arg=USER=runner
39
binarypath: ${{ github.workspace}}/out/linux-amd64/machinefile
40
41
+ - name: Verify execution
42
+ run: |
43
+ if [ -f /tmp/hello ]; then
44
+ echo "Machinefile executed successfully"
45
+ cat /tmp/hello
46
+ else
47
+ echo "Machinefile execution failed"
48
+ exit 1
49
+ fi
50
+
51
- name: Upload Artifact - amd64
52
uses: actions/upload-artifact@v4
53
with:
@@ -52,4 +62,4 @@ jobs:
62
name: linux-arm64
63
path: |
54
64
./out/linux-arm64
55
- retention-days: 5
65
+ retention-days: 5
0 commit comments