From ef7962e394a2821c637980aec113153273e33e0b Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Wed, 21 Aug 2024 22:18:21 +0200 Subject: [PATCH] chore(release): v0.1.0 (#17) ### Added - use actual drone && cuddle setup - remove unused stuff - update - with clone and list - with proper stdout and whatnot - with repo clone - add coffee repo view -w - add readme - fix api - new folder - with install - unknown linux - with volume again - list - without volume - with depends on ci - with volume - with shared mount - add drone - with support for closed prs - add install script - with open browser - with test branch - with swagger client - with beginning of command structure - with coffee base - add base rust cli ### Other - *(deps)* update rust crate anyhow to 1.0.74 - *(deps)* update rust crate clap to 4.3.21 - *(deps)* update rust crate axum to 0.6.20 - *(deps)* update all dependencies - Merge pull request 'chore(deps): update all dependencies' (#9) from renovate/all into main - Merge pull request 'chore(deps): update rust crate clap to 4.3.8' (#8) from renovate/all into main - Merge pull request 'chore(deps): update rust crate clap to 4.3.6' (#7) from renovate/all into main - Merge pull request 'chore(deps): update rust crate clap to 4.3.5' (#6) from renovate/all into main - Merge pull request 'fix(deps): update all dependencies' (#4) from renovate/all into main - Merge pull request 'Configure Renovate' (#2) from renovate/configure into main Reviewed-on: https://git.front.kjuulh.io/kjuulh/coffee/pulls/2 - Merge branch 'main' into renovate/configure - debug some more - fix cargo path - Add renovate.json - Merge pull request 'feat/with-test-branch' (#3) from feat/with-test-branch into main Reviewed-on: https://git.front.kjuulh.io/kjuulh/coffee/pulls/3 - Merge branch 'main' into feat/with-test-branch - Merge pull request 'feat: with test branch' (#1) from feat/with-test-branch into main Reviewed-on: https://git.front.kjuulh.io/kjuulh/coffee/pulls/1 Co-authored-by: cuddle-please Reviewed-on: https://git.front.kjuulh.io/kjuulh/coffee/pulls/17 --- .cuddle/base | 1 + .cuddle/tmp/cuddle-rust-cli-plan.yaml | 137 ++++++++++++++++++++++++++ CHANGELOG.md | 74 ++++++++++++++ Cargo.toml | 3 + 4 files changed, 215 insertions(+) create mode 160000 .cuddle/base create mode 100644 .cuddle/tmp/cuddle-rust-cli-plan.yaml create mode 100644 CHANGELOG.md diff --git a/.cuddle/base b/.cuddle/base new file mode 160000 index 0000000..951051a --- /dev/null +++ b/.cuddle/base @@ -0,0 +1 @@ +Subproject commit 951051a4fe1647255e8694d084b132e517052b04 diff --git a/.cuddle/tmp/cuddle-rust-cli-plan.yaml b/.cuddle/tmp/cuddle-rust-cli-plan.yaml new file mode 100644 index 0000000..6af904e --- /dev/null +++ b/.cuddle/tmp/cuddle-rust-cli-plan.yaml @@ -0,0 +1,137 @@ +kind: pipeline +name: cuddle-rust-cli-plan +type: docker + +steps: + - name: load_secret + image: debian:buster-slim + volumes: + - name: ssh + path: /root/.ssh/ + environment: + SSH_KEY: + from_secret: gitea_id_ed25519 + commands: + - mkdir -p $HOME/.ssh/ + - echo "$SSH_KEY" | base64 -d > $HOME/.ssh/id_ed25519 + - chmod -R 600 ~/.ssh + - | + cat >$HOME/.ssh/config <