Compare commits
24 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e27c9c84cb | ||
|
|
26be7144b7 | ||
|
|
704c6b40c4 | ||
|
|
60c3aacb17 | ||
|
|
69ba977c50 | ||
|
|
a556e80cb3 | ||
|
|
96ab422aa6 | ||
|
|
09a017779e | ||
|
|
9baceaf7be | ||
|
|
30d779d1a8 | ||
|
|
8a5806631a | ||
|
|
66277dfaec | ||
|
|
5a618d1434 | ||
|
|
ba4f12bfe1 | ||
|
|
7f8bdc5174 | ||
|
|
2cdc04310b | ||
|
|
766da51375 | ||
|
|
49d8359332 | ||
|
|
b2856ab64f | ||
|
|
ef7baa2fee | ||
|
|
5f19c66987 | ||
|
|
9e8150a63d | ||
|
|
ff4c066a7a | ||
|
|
0f1898c5f3 |
70
.circleci/config.yml
Normal file
70
.circleci/config.yml
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
version: 2.1
|
||||||
|
executors:
|
||||||
|
docker-executor:
|
||||||
|
environment:
|
||||||
|
IMAGE_NAME: peterevans/dockerhub-description
|
||||||
|
docker:
|
||||||
|
- image: circleci/buildpack-deps:stretch
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
executor: docker-executor
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- setup_remote_docker:
|
||||||
|
docker_layer_caching: true
|
||||||
|
- run:
|
||||||
|
name: Build Docker image
|
||||||
|
command: |
|
||||||
|
docker build -t $IMAGE_NAME:latest . --label "org.opencontainers.image.version=${CIRCLE_TAG/v/''}"
|
||||||
|
- run:
|
||||||
|
name: Cache Docker image
|
||||||
|
command: docker save -o image.tar $IMAGE_NAME
|
||||||
|
- persist_to_workspace:
|
||||||
|
root: .
|
||||||
|
paths:
|
||||||
|
- ./image.tar
|
||||||
|
publish-tag:
|
||||||
|
executor: docker-executor
|
||||||
|
steps:
|
||||||
|
- attach_workspace:
|
||||||
|
at: /tmp/workspace
|
||||||
|
- setup_remote_docker
|
||||||
|
- run:
|
||||||
|
name: Load cached Docker image
|
||||||
|
command: docker load -i /tmp/workspace/image.tar
|
||||||
|
- run:
|
||||||
|
name: Publish Docker Image to Docker Hub
|
||||||
|
command: |
|
||||||
|
echo "$DOCKERHUB_PASSWORD" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin
|
||||||
|
IMAGE_TAG=${CIRCLE_TAG/v/''}
|
||||||
|
docker tag $IMAGE_NAME:latest $IMAGE_NAME:$IMAGE_TAG
|
||||||
|
docker push $IMAGE_NAME:latest
|
||||||
|
docker push $IMAGE_NAME:$IMAGE_TAG
|
||||||
|
# If the minor version can be extracted then tag and push
|
||||||
|
MINOR_VERSION=$(echo $CIRCLE_TAG | sed -n "s/^v\([0-9]*.[0-9]*\).[0-9]*$/\1/p")
|
||||||
|
if [[ ${#MINOR_VERSION} -gt 0 ]]; then
|
||||||
|
docker tag $IMAGE_NAME:latest $IMAGE_NAME:$MINOR_VERSION
|
||||||
|
docker push $IMAGE_NAME:$MINOR_VERSION
|
||||||
|
fi
|
||||||
|
workflows:
|
||||||
|
version: 2
|
||||||
|
build:
|
||||||
|
jobs:
|
||||||
|
- build
|
||||||
|
build-and-publish-tags:
|
||||||
|
jobs:
|
||||||
|
- build:
|
||||||
|
filters:
|
||||||
|
tags:
|
||||||
|
only: /^v.*/
|
||||||
|
branches:
|
||||||
|
ignore: /.*/
|
||||||
|
- publish-tag:
|
||||||
|
context: org-global
|
||||||
|
requires:
|
||||||
|
- build
|
||||||
|
filters:
|
||||||
|
tags:
|
||||||
|
only: /^v.*/
|
||||||
|
branches:
|
||||||
|
ignore: /.*/
|
||||||
16
.github/workflows/push.yml
vendored
Normal file
16
.github/workflows/push.yml
vendored
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
name: Update Docker Hub Description
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
jobs:
|
||||||
|
dockerHubDescription:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@master
|
||||||
|
- name: Docker Hub Description
|
||||||
|
uses: ./
|
||||||
|
env:
|
||||||
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||||
|
DOCKERHUB_REPOSITORY: peterevans/dockerhub-description
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM peterevans/curl-jq:1.0.0
|
FROM peterevans/curl-jq:1.0.1
|
||||||
|
|
||||||
LABEL maintainer="Peter Evans <mail@peterevans.dev>"
|
LABEL maintainer="Peter Evans <mail@peterevans.dev>"
|
||||||
LABEL repository="https://github.com/peter-evans/dockerhub-description"
|
LABEL repository="https://github.com/peter-evans/dockerhub-description"
|
||||||
@@ -9,7 +9,7 @@ LABEL com.github.actions.description="An action to update a Docker Hub repositor
|
|||||||
LABEL com.github.actions.icon="upload"
|
LABEL com.github.actions.icon="upload"
|
||||||
LABEL com.github.actions.color="blue"
|
LABEL com.github.actions.color="blue"
|
||||||
|
|
||||||
COPY LICENSE README.md
|
COPY LICENSE README.md /
|
||||||
|
|
||||||
COPY entrypoint.sh /entrypoint.sh
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
|
|
||||||
|
|||||||
103
README.md
103
README.md
@@ -1,4 +1,6 @@
|
|||||||
# Docker Hub Description
|
# Docker Hub Description
|
||||||
|
[](https://github.com/marketplace/actions/docker-hub-description)
|
||||||
|
[](https://circleci.com/gh/peter-evans/dockerhub-description/tree/master)
|
||||||
|
|
||||||
A GitHub action to update a Docker Hub repository description from `README.md`.
|
A GitHub action to update a Docker Hub repository description from `README.md`.
|
||||||
|
|
||||||
@@ -6,66 +8,89 @@ This is useful if you `docker push` your images to Docker Hub. It provides an ea
|
|||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```
|
```yml
|
||||||
action "Update Docker Hub Repository Description" {
|
- name: Docker Hub Description
|
||||||
uses = "peter-evans/dockerhub-description@master"
|
uses: peter-evans/dockerhub-description@v1.0.1
|
||||||
secrets = ["DOCKERHUB_USERNAME", "DOCKERHUB_PASSWORD", "DOCKERHUB_REPOSITORY"]
|
env:
|
||||||
}
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||||
|
DOCKERHUB_REPOSITORY: peterevans/dockerhub-description
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Required secrets
|
#### Required environment variables
|
||||||
|
|
||||||
- `DOCKERHUB_USERNAME` - Docker Hub username
|
- `DOCKERHUB_USERNAME` - Docker Hub username
|
||||||
- `DOCKERHUB_PASSWORD` - Docker Hub password
|
- `DOCKERHUB_PASSWORD` - Docker Hub password
|
||||||
- `DOCKERHUB_REPOSITORY` - The name of the Docker Hub repository to update. (This may also be an environment variable if not considered sensitive)
|
- `DOCKERHUB_REPOSITORY` - The Docker Hub repository to update in the format `<namespace>/<name>`
|
||||||
|
|
||||||
|
Note that `DOCKERHUB_REPOSITORY` may also be passed as a secret if considered sensitive.
|
||||||
|
|
||||||
#### Optionally specifying the file path
|
#### Optionally specifying the file path
|
||||||
|
|
||||||
The action assumes that there is a file called `README.md` located at the root of the repository.
|
The action assumes that there is a file called `README.md` located at the root of the repository.
|
||||||
If this is not the case, the path can be overridden with an environment variable.
|
If this is not the case, the path can be overridden with an environment variable.
|
||||||
|
|
||||||
```
|
```yml
|
||||||
action "Update Docker Hub Repository Description" {
|
- name: Docker Hub Description
|
||||||
uses = "peter-evans/dockerhub-description@master"
|
uses: peter-evans/dockerhub-description@v1.0.1
|
||||||
secrets = ["DOCKERHUB_USERNAME", "DOCKERHUB_PASSWORD", "DOCKERHUB_REPOSITORY"]
|
env:
|
||||||
env = {
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
README_FILEPATH = "./some-path/README.md"
|
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||||
}
|
DOCKERHUB_REPOSITORY: peterevans/dockerhub-description
|
||||||
}
|
README_FILEPATH: ./some-path/README.md
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Examples
|
#### Examples
|
||||||
|
|
||||||
Updates the Docker Hub repository description whenever there is a `git push` to the `master` branch.
|
Updates the Docker Hub repository description whenever there is a `git push` to the `master` branch.
|
||||||
```
|
```yml
|
||||||
workflow "New workflow" {
|
name: Update Docker Hub Description
|
||||||
on = "push"
|
on:
|
||||||
resolves = ["Update Docker Hub Repository Description"]
|
push:
|
||||||
}
|
branches:
|
||||||
|
- master
|
||||||
action "Filter master branch" {
|
jobs:
|
||||||
uses = "actions/bin/filter@master"
|
dockerHubDescription:
|
||||||
args = "branch master"
|
runs-on: ubuntu-latest
|
||||||
}
|
steps:
|
||||||
|
- uses: actions/checkout@master
|
||||||
action "Update Docker Hub Repository Description" {
|
- name: Docker Hub Description
|
||||||
needs = ["Filter master branch"]
|
uses: peter-evans/dockerhub-description@v1.0.1
|
||||||
uses = "peter-evans/dockerhub-description@master"
|
env:
|
||||||
secrets = ["DOCKERHUB_USERNAME", "DOCKERHUB_PASSWORD", "DOCKERHUB_REPOSITORY"]
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
}
|
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||||
|
DOCKERHUB_REPOSITORY: peterevans/dockerhub-description
|
||||||
```
|
```
|
||||||
|
|
||||||
Updates the Docker Hub repository description whenever a new release is created.
|
Updates the Docker Hub repository description whenever a new release is created.
|
||||||
|
```yml
|
||||||
|
name: Update Docker Hub Description
|
||||||
|
on: release
|
||||||
|
jobs:
|
||||||
|
dockerHubDescription:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@master
|
||||||
|
- name: Docker Hub Description
|
||||||
|
uses: peter-evans/dockerhub-description@v1.0.1
|
||||||
|
env:
|
||||||
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||||
|
DOCKERHUB_REPOSITORY: peterevans/dockerhub-description
|
||||||
```
|
```
|
||||||
workflow "New workflow" {
|
|
||||||
on = "release"
|
|
||||||
resolves = ["Update Docker Hub Repository Description"]
|
|
||||||
}
|
|
||||||
|
|
||||||
action "Update Docker Hub Repository Description" {
|
## Using the Docker image independently of GitHub Actions
|
||||||
uses = "peter-evans/dockerhub-description@master"
|
|
||||||
secrets = ["DOCKERHUB_USERNAME", "DOCKERHUB_PASSWORD", "DOCKERHUB_REPOSITORY"]
|
The image can be executed in other environments independently of GitHub Actions.
|
||||||
}
|
Simply volume mount the location of the `README.md` file to the container and set environment variables as follows.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
docker run -v $PWD:/workspace \
|
||||||
|
-e DOCKERHUB_USERNAME='user1' \
|
||||||
|
-e DOCKERHUB_PASSWORD='xxxxx' \
|
||||||
|
-e DOCKERHUB_REPOSITORY='user1/my-docker-image' \
|
||||||
|
-e README_FILEPATH='/workspace/README.md' \
|
||||||
|
peterevans/dockerhub-description:1.0.1
|
||||||
```
|
```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|||||||
@@ -12,8 +12,8 @@ TOKEN=$(curl -s -H "Content-Type: application/json" -X POST -d ${LOGIN_PAYLOAD}
|
|||||||
|
|
||||||
# Send a PATCH request to update the description of the repository
|
# Send a PATCH request to update the description of the repository
|
||||||
echo "Sending PATCH request"
|
echo "Sending PATCH request"
|
||||||
REPO_URL="https://hub.docker.com/v2/repositories/${DOCKERHUB_USERNAME}/${DOCKERHUB_REPOSITORY}/"
|
REPO_URL="https://hub.docker.com/v2/repositories/${DOCKERHUB_REPOSITORY}/"
|
||||||
RESPONSE_CODE=$(curl -s --write-out %{response_code} --silent --output /dev/null -H "Authorization: JWT ${TOKEN}" -X PATCH --data-urlencode full_description@${README_FILEPATH} ${REPO_URL})
|
RESPONSE_CODE=$(curl -s --write-out %{response_code} --output /dev/null -H "Authorization: JWT ${TOKEN}" -X PATCH --data-urlencode full_description@${README_FILEPATH} ${REPO_URL})
|
||||||
echo "Received response code: $RESPONSE_CODE"
|
echo "Received response code: $RESPONSE_CODE"
|
||||||
|
|
||||||
if [ $RESPONSE_CODE -eq 200 ]; then
|
if [ $RESPONSE_CODE -eq 200 ]; then
|
||||||
|
|||||||
Reference in New Issue
Block a user