release version 0.2.1
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
2d0c24890a
commit
a2c2fcf5a6
|
@ -9,13 +9,15 @@ steps:
|
||||||
- cargo test
|
- cargo test
|
||||||
|
|
||||||
- name: auto-release
|
- name: auto-release
|
||||||
image: xena/gitea-release:0.2.0
|
image: xena/gitea-release:0.2.1
|
||||||
settings:
|
settings:
|
||||||
auth_username: cadey
|
auth_username: cadey
|
||||||
gitea_server: https://tulpa.dev
|
gitea_server: https://tulpa.dev
|
||||||
gitea_token:
|
gitea_token:
|
||||||
from_secret: GITEA_TOKEN
|
from_secret: GITEA_TOKEN
|
||||||
when:
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
branch:
|
branch:
|
||||||
include:
|
include:
|
||||||
- master
|
- master
|
||||||
|
|
|
@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## 0.2.1
|
||||||
|
|
||||||
|
Hotfix for a typo in the docker manifest.
|
||||||
|
|
||||||
## 0.2.0
|
## 0.2.0
|
||||||
|
|
||||||
### ADDED
|
### ADDED
|
||||||
|
|
|
@ -326,7 +326,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "gitea-release"
|
name = "gitea-release"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"byte-unit",
|
"byte-unit",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gitea-release"
|
name = "gitea-release"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
authors = ["Christine Dodrill <me@christine.website>"]
|
authors = ["Christine Dodrill <me@christine.website>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@ let
|
||||||
contents = [ pkg ];
|
contents = [ pkg ];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
Cmd = [ "/bin/gitea-release" "drone" ];
|
Cmd = [ "/bin/gitea-release" "drone-plugin" ];
|
||||||
WorkingDir = "/";
|
WorkingDir = "/";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue