Skip to content

Commit 712d457

Browse files
committed
fix copy paste errors
1 parent 5bd3ede commit 712d457

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/settings.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
repository:
2-
name: drone-ansible
3-
description: Drone plugin to provision via Ansible
4-
homepage: http://plugins.drone.io/drone-plugins/drone-ansible
2+
name: drone-pypi
3+
description: Drone plugin to publish python packages to PyPi
4+
homepage: http://plugins.drone.io/drone-plugins/drone-pypi
55
topics: drone, drone-plugin
66

77
private: false

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Gitter chat](https://badges.gitter.im/drone/drone.png)](https://gitter.im/drone/drone)
55
[![Join the discussion at https://discourse.drone.io](https://img.shields.io/badge/discourse-forum-orange.svg)](https://discourse.drone.io)
66
[![Drone questions at https://stackoverflow.com](https://img.shields.io/badge/drone-stackoverflow-orange.svg)](https://stackoverflow.com/questions/tagged/drone.io)
7-
[![](https://images.microbadger.com/badges/image/plugins/ansible.svg)](https://microbadger.com/images/plugins/ansible "Get your own image badge on microbadger.com")
7+
[![](https://images.microbadger.com/badges/image/plugins/pypi.svg)](https://microbadger.com/images/plugins/pypi "Get your own image badge on microbadger.com")
88
[![Go Doc](https://godoc.org/github.com/drone-plugins/drone-pypi?status.svg)](http://godoc.org/github.com/drone-plugins/drone-pypi)
99
[![Go Report](https://goreportcard.com/badge/github.com/drone-plugins/drone-pypi)](https://goreportcard.com/report/github.com/drone-plugins/drone-pypi)
1010

@@ -31,7 +31,7 @@ Build the Docker image with the following commands:
3131
docker build \
3232
--label org.label-schema.build-date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
3333
--label org.label-schema.vcs-ref=$(git rev-parse --short HEAD) \
34-
--file docker/Dockerfile.linux.amd64 --tag plugins/ansible .
34+
--file docker/Dockerfile.linux.amd64 --tag plugins/pypi .
3535
```
3636

3737
## Usage

docker/Dockerfile.linux.amd64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM plugins/base:linux-amd64
22

33
LABEL maintainer="Drone.IO Community <[email protected]>" \
4-
org.label-schema.name="Drone Ansible" \
4+
org.label-schema.name="Drone PyPi" \
55
org.label-schema.vendor="Drone.IO Community" \
66
org.label-schema.schema-version="1.0"
77

docker/Dockerfile.linux.arm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM plugins/base:linux-arm
22

33
LABEL maintainer="Drone.IO Community <[email protected]>" \
4-
org.label-schema.name="Drone Ansible" \
4+
org.label-schema.name="Drone PyPi" \
55
org.label-schema.vendor="Drone.IO Community" \
66
org.label-schema.schema-version="1.0"
77

docker/Dockerfile.linux.arm64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM plugins/base:linux-arm64
22

33
LABEL maintainer="Drone.IO Community <[email protected]>" \
4-
org.label-schema.name="Drone Ansible" \
4+
org.label-schema.name="Drone PyPi" \
55
org.label-schema.vendor="Drone.IO Community" \
66
org.label-schema.schema-version="1.0"
77

0 commit comments

Comments
 (0)