Update README.md on Docker Hub
This commit is contained in:
parent
7cf35a4e07
commit
c301b2f437
1 changed files with 17 additions and 17 deletions
34
.github/workflows/build.yml
vendored
34
.github/workflows/build.yml
vendored
|
|
@ -62,24 +62,24 @@ jobs:
|
||||||
with:
|
with:
|
||||||
images: ${{ secrets.DOCKER_REGISTRY }}/${{ env.IMAGE_NAME }}
|
images: ${{ secrets.DOCKER_REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||||
|
|
||||||
# Build and push Docker image with Buildx (don't push on PR)
|
Build and push Docker image with Buildx (don't push on PR)
|
||||||
# https://github.com/docker/build-push-action
|
https://github.com/docker/build-push-action
|
||||||
# - name: Build and push Docker image
|
- name: Build and push Docker image
|
||||||
# uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v2
|
||||||
# with:
|
with:
|
||||||
# context: .
|
context: .
|
||||||
# file: Dockerfile
|
file: Dockerfile
|
||||||
# platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
# push: ${{ github.event_name != 'pull_request' || github.event.inputs.push == 'true' }}
|
push: ${{ github.event_name != 'pull_request' || github.event.inputs.push == 'true' }}
|
||||||
# tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
# labels: ${{ steps.meta.outputs.labels }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
|
|
||||||
- name: Docker Hub Description
|
# - name: Docker Hub Description
|
||||||
if: github.event_name != 'pull_request' || github.event.inputs.push == 'true'
|
# if: github.event_name != 'pull_request' || github.event.inputs.push == 'true'
|
||||||
run: |
|
# 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
|
# 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
|
# chmod +x $HOME/.docker/cli-plugins/docker-pushrm
|
||||||
docker pushrm ${{ env.IMAGE_NAME }}
|
# docker pushrm ${{ env.IMAGE_NAME }}
|
||||||
|
|
||||||
Documentation:
|
Documentation:
|
||||||
runs-on: 'ubuntu-latest'
|
runs-on: 'ubuntu-latest'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue