Skip to content

Commit 0db1716

Browse files
committed
fix dhall
1 parent 1ef1f37 commit 0db1716

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

buildkite/src/Command/Packages/Publish.dhall

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,10 @@ let DebianChannel = ../../Constants/DebianChannel.dhall
2020

2121
let Profiles = ../../Constants/Profiles.dhall
2222

23-
let Artifact = ../../Constants/Artifacts.dhall
24-
2523
let DebianVersions = ../../Constants/DebianVersions.dhall
2624

2725
let DebianRepo = ../../Constants/DebianRepo.dhall
2826

29-
let Toolchain = ../../Constants/Toolchain.dhall
30-
3127
let ContainerImages = ../../Constants/ContainerImages.dhall
3228

3329
let Command = ../Base.dhall
@@ -36,6 +32,8 @@ let Cmd = ../../Lib/Cmds.dhall
3632

3733
let Mina = ../Mina.dhall
3834

35+
let Artifact = ../../Constants/Artifacts.dhall
36+
3937
let Spec =
4038
{ Type =
4139
{ artifacts : List Artifact.Type
@@ -212,7 +210,8 @@ let publish
212210
-> Command.build
213211
Command.Config::{
214212
, commands =
215-
[ Cmd.run ( ". ./buildkite/scripts/export-git-env-vars.sh && "
213+
[ Cmd.run
214+
( ". ./buildkite/scripts/export-git-env-vars.sh && "
216215
++ "./buildkite/scripts/release/manager.sh publish "
217216
++ "--artifacts ${artifacts} "
218217
++ "--networks ${networks} "
@@ -225,7 +224,8 @@ let publish
225224
++ "--target-version ${r.value} "
226225
++ "--codenames ${codenames} "
227226
++ "--only-dockers "
228-
) ]
227+
)
228+
]
229229
, label = "Docker Packages Publishing"
230230
, key = "publish-dockers-${Natural/show r.index}"
231231
, target = Size.Small

buildkite/src/Jobs/Promote/AutoPromoteNightly.dhall

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ let targetVersion =
4848
-> \(latestGitTag : Text)
4949
-> \(todayDate : Text)
5050
-> "${latestGitTag}-${todayDate}-${DebianVersions.lowerName
51-
codename}-${DebianChannel.lowerName
52-
channel}"
51+
codename}-${DebianChannel.lowerName
52+
channel}"
5353

5454
in Pipeline.build
5555
Pipeline.Config::{

0 commit comments

Comments
 (0)