Skip to content

Commit

Permalink
Ensure file path creation [deploy]
Browse files Browse the repository at this point in the history
  • Loading branch information
pedromxavier committed Oct 15, 2024
1 parent 477e0b9 commit 659e241
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build/library/deploy.jl
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ function deploy_qubolib!(index::QUBOLib.LibraryIndex)
write(joinpath(QUBOLib.build_path(index), "NOTES.md"), release_notes)

@info "[QUBOLib] Generate Mirror release notes"

mirror_path = mkpath(joinpath(QUBOLib.build_path(index), "mirror"))
mirror_notes = """
# QUBOLib Data Mirror Release Notes
This release provides access to mirrored and preprocessed instances from other libraries.
"""

write(joinpath(QUBOLib.build_path(index), "mirror", "NOTES.md"), mirror_notes)
write(joinpath(mirror_path, "NOTES.md"), mirror_notes)

@info "[QUBOLib] Deployment done!"

Expand Down

0 comments on commit 659e241

Please sign in to comment.