Merge branch 'devel' of https://git.cscherr.de/PlexSheep/autocrate into devel
cargo devel CI / cargo CI (push) Failing after 1m42s Details

This commit is contained in:
Christoph J. Scherr 2024-02-19 22:08:00 +01:00
commit f12f5763d1
Signed by: PlexSheep
GPG Key ID: 7CDD0B14851A08EF
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
use crate::{config::Config, error::*}; use crate::{config::Config, error::*};
pub async fn publish(cfg: &Config) -> Result<()> { pub async fn publish(_cfg: &Config) -> Result<()> {
todo!() todo!()
} }

View File

@ -1,6 +1,6 @@
use crate::{config::Config, error::*, serverapi::ApiCollection}; use crate::{config::Config, error::*, serverapi::ApiCollection};
pub async fn release(cfg: &Config, apis: &mut ApiCollection) -> Result<()> { pub async fn release(_cfg: &Config, _apis: &mut ApiCollection) -> Result<()> {
// TODO: git tag // TODO: git tag
// TODO: push to each server // TODO: push to each server