Update README.md on Docker Hub
This commit is contained in:
parent
3aaff4aa04
commit
7cf35a4e07
1 changed files with 13 additions and 14 deletions
27
.github/workflows/build.yml
vendored
27
.github/workflows/build.yml
vendored
|
|
@ -64,23 +64,22 @@ jobs:
|
|||
|
||||
# Build and push Docker image with Buildx (don't push on PR)
|
||||
# https://github.com/docker/build-push-action
|
||||
- name: Build and push Docker image
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: ${{ github.event_name != 'pull_request' || github.event.inputs.push == 'true' }}
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
# - name: Build and push Docker image
|
||||
# uses: docker/build-push-action@v2
|
||||
# with:
|
||||
# context: .
|
||||
# file: Dockerfile
|
||||
# platforms: linux/amd64,linux/arm64
|
||||
# push: ${{ github.event_name != 'pull_request' || github.event.inputs.push == 'true' }}
|
||||
# tags: ${{ steps.meta.outputs.tags }}
|
||||
# labels: ${{ steps.meta.outputs.labels }}
|
||||
|
||||
- name: Docker Hub Description
|
||||
if: github.event_name != 'pull_request' || github.event.inputs.push == 'true'
|
||||
uses: peter-evans/dockerhub-description@v2.1.0
|
||||
env:
|
||||
DOCKERHUB_USERNAME: ${{ secrets.DOCKER_REGISTRY_USER }}
|
||||
DOCKERHUB_PASSWORD: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
|
||||
DOCKERHUB_REPOSITORY: ${{ env.IMAGE_NAME }}
|
||||
run: |
|
||||
wget -q https://github.com/christian-korneck/docker-pushrm/releases/download/v1.8.0/docker-pushrm_linux_amd64 -O $HOME/.docker/cli-plugins/docker-pushrm
|
||||
chmod +x $HOME/.docker/cli-plugins/docker-pushrm
|
||||
docker pushrm ${{ env.IMAGE_NAME }}
|
||||
|
||||
Documentation:
|
||||
runs-on: 'ubuntu-latest'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue