chore: add noop release script
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2023-08-12 21:22:47 +02:00
parent a94fd3e68e
commit 5e604d7a10
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394
2 changed files with 12 additions and 1 deletions

View File

@ -100,7 +100,7 @@ async fn main() -> eyre::Result<()> {
cuddle_please(client.clone(), &cli)
);
}
Commands::Release => todo!(),
Commands::Release => {}
}
Ok(())

11
scripts/ci:release.sh Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -e
CMD_PREFIX="cargo run -p ci --"
if [[ -n "$CI_PREFIX" ]]; then
CMD_PREFIX="$CI_PREFIX"
fi
$CMD_PREFIX pull-request --cuddle-please-image="$CUDDLE_PLEASE_IMAGE"