feat: with base rust project
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2023-07-28 19:53:04 +02:00
parent 4ff3acb1d3
commit e563bbfd0d
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394
4 changed files with 17 additions and 1 deletions

View File

@ -61,7 +61,7 @@ steps:
- name: release
image: marcoieni/release-plz:0.3.16
commands:
- release-plz release-pr --git-token="$GIT_TOKEN" --backend gitea
- release-plz release-pr --git-token="$GIT_TOKEN" --token="$GIT_TOKEN" --backend gitea --registry https://git.front.kjuulh.io/kjuulh/_cargo-index.git
environment:
GIT_TOKEN:
from_secret: gitea_token

5
.gitignore vendored
View File

@ -1,2 +1,7 @@
.shuttle/
.env
# Added by cargo
/target

8
Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "shuttle-drone-templates"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}