We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d64565 commit 93fa2bdCopy full SHA for 93fa2bd
.github/workflows/debos.yml
@@ -48,6 +48,8 @@ jobs:
48
uses: actions/github-script@v6
49
with:
50
script: |
51
+ const fs = require('fs');
52
+
53
// helper to search for the latest artifact with this name in this
54
// repository (not particularly for this workflow run; artifacts
55
// we're looking for will only be built from a scheduled (cron)
@@ -95,9 +97,9 @@ jobs:
95
97
}
96
98
99
try {
- let linux_deb_artifact =
100
+ const linux_deb_artifact =
101
await lastArtifactByName("linux-deb-links");
- let u_boot_rb1_artifact =
102
+ const u_boot_rb1_artifact =
103
await lastArtifactByName("u-boot-rb1-links");
104
105
if (!linux_deb_artifact || !u_boot_rb1_artifact) {
0 commit comments