feat: with actual pr
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-12-26 17:25:18 +01:00
parent 8b929c912c
commit 08c36e737c

View File

@@ -208,7 +208,9 @@ impl NodeService {
#[async_trait]
impl PullRequestAction for NodeService {
async fn execute_pull_request(&self) -> eyre::Result<()> {
self.build_release().await?;
let release = self.build_release().await?;
release.sync().await?;
Ok(())
}