forked from mirrors/relay
Disable crate publish, bump version
This commit is contained in:
parent
79fa0fb828
commit
061c1a0c0a
3 changed files with 39 additions and 39 deletions
74
.drone.yml
74
.drone.yml
|
@ -381,41 +381,41 @@ trigger:
|
|||
event:
|
||||
- tag
|
||||
|
||||
---
|
||||
# ---
|
||||
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: publish-crate
|
||||
|
||||
platform:
|
||||
arch: amd64
|
||||
|
||||
clone:
|
||||
disable: true
|
||||
|
||||
steps:
|
||||
- name: clone
|
||||
image: alpine/git:latest
|
||||
user: root
|
||||
commands:
|
||||
- git clone $DRONE_GIT_HTTP_URL .
|
||||
- git checkout $DRONE_COMMIT
|
||||
- chown -R 991:991 .
|
||||
|
||||
- name: publish
|
||||
image: asonix/rust-builder:latest-linux-amd64
|
||||
pull: always
|
||||
environment:
|
||||
CRATES_IO_TOKEN:
|
||||
from_secret: crates_io_token
|
||||
commands:
|
||||
- cargo publish --token $CRATES_IO_TOKEN
|
||||
|
||||
depends_on:
|
||||
- build-amd64
|
||||
- build-arm64v8
|
||||
- build-arm32v7
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- tag
|
||||
# kind: pipeline
|
||||
# type: docker
|
||||
# name: publish-crate
|
||||
#
|
||||
# platform:
|
||||
# arch: amd64
|
||||
#
|
||||
# clone:
|
||||
# disable: true
|
||||
#
|
||||
# steps:
|
||||
# - name: clone
|
||||
# image: alpine/git:latest
|
||||
# user: root
|
||||
# commands:
|
||||
# - git clone $DRONE_GIT_HTTP_URL .
|
||||
# - git checkout $DRONE_COMMIT
|
||||
# - chown -R 991:991 .
|
||||
#
|
||||
# - name: publish
|
||||
# image: asonix/rust-builder:latest-linux-amd64
|
||||
# pull: always
|
||||
# environment:
|
||||
# CRATES_IO_TOKEN:
|
||||
# from_secret: crates_io_token
|
||||
# commands:
|
||||
# - cargo publish --token $CRATES_IO_TOKEN
|
||||
#
|
||||
# depends_on:
|
||||
# - build-amd64
|
||||
# - build-arm64v8
|
||||
# - build-arm32v7
|
||||
#
|
||||
# trigger:
|
||||
# event:
|
||||
# - tag
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -288,7 +288,7 @@ checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704"
|
|||
|
||||
[[package]]
|
||||
name = "ap-relay"
|
||||
version = "0.3.21"
|
||||
version = "0.3.22-beta.0"
|
||||
dependencies = [
|
||||
"activitystreams",
|
||||
"activitystreams-ext",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "ap-relay"
|
||||
description = "A simple activitypub relay"
|
||||
version = "0.3.21"
|
||||
version = "0.3.22-beta.0"
|
||||
authors = ["asonix <asonix@asonix.dog>"]
|
||||
license-file = "LICENSE"
|
||||
readme = "README.md"
|
||||
|
|
Loading…
Reference in a new issue