Disable crate publish, bump version

This commit is contained in:
Aode (lion) 2022-07-02 14:09:00 -05:00
parent 79fa0fb828
commit 061c1a0c0a
3 changed files with 39 additions and 39 deletions

View file

@ -381,41 +381,41 @@ trigger:
event: event:
- tag - tag
--- # ---
kind: pipeline # kind: pipeline
type: docker # type: docker
name: publish-crate # name: publish-crate
#
platform: # platform:
arch: amd64 # arch: amd64
#
clone: # clone:
disable: true # disable: true
#
steps: # steps:
- name: clone # - name: clone
image: alpine/git:latest # image: alpine/git:latest
user: root # user: root
commands: # commands:
- git clone $DRONE_GIT_HTTP_URL . # - git clone $DRONE_GIT_HTTP_URL .
- git checkout $DRONE_COMMIT # - git checkout $DRONE_COMMIT
- chown -R 991:991 . # - chown -R 991:991 .
#
- name: publish # - name: publish
image: asonix/rust-builder:latest-linux-amd64 # image: asonix/rust-builder:latest-linux-amd64
pull: always # pull: always
environment: # environment:
CRATES_IO_TOKEN: # CRATES_IO_TOKEN:
from_secret: crates_io_token # from_secret: crates_io_token
commands: # commands:
- cargo publish --token $CRATES_IO_TOKEN # - cargo publish --token $CRATES_IO_TOKEN
#
depends_on: # depends_on:
- build-amd64 # - build-amd64
- build-arm64v8 # - build-arm64v8
- build-arm32v7 # - build-arm32v7
#
trigger: # trigger:
event: # event:
- tag # - tag

2
Cargo.lock generated
View file

@ -288,7 +288,7 @@ checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704"
[[package]] [[package]]
name = "ap-relay" name = "ap-relay"
version = "0.3.21" version = "0.3.22-beta.0"
dependencies = [ dependencies = [
"activitystreams", "activitystreams",
"activitystreams-ext", "activitystreams-ext",

View file

@ -1,7 +1,7 @@
[package] [package]
name = "ap-relay" name = "ap-relay"
description = "A simple activitypub relay" description = "A simple activitypub relay"
version = "0.3.21" version = "0.3.22-beta.0"
authors = ["asonix <asonix@asonix.dog>"] authors = ["asonix <asonix@asonix.dog>"]
license-file = "LICENSE" license-file = "LICENSE"
readme = "README.md" readme = "README.md"