Skip to content

Commit

Permalink
Update calibre-fullserver-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ridgarou authored Oct 4, 2020
1 parent 3d9bf9b commit e099ab7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/calibre-fullserver-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ jobs:
uses: docker/login-action@v1.4.1
with:
# Server address of Docker registry. If not set then will default to Docker Hub
registry: env.DOCKER_REGISTRY_URL # optional
registry: ${{ env.DOCKER_REGISTRY_URL }} # optional
# Username used to log against the Docker registry
username: env.DOCKER_USERNAME # optional
username: ${{ env.DOCKER_USERNAME }} # optional
# Password or personal access token used to log against the Docker registry
password: env.DOCKER_PASSWORD
password: ${{ env.DOCKER_PASSWORD }}
# Log out from the Docker registry at the end of a job
logout: true # optional, default is true

Expand All @@ -54,15 +54,15 @@ jobs:
uses: docker/build-push-action@v1.1.1
with:
# Username used to log in to a Docker registry. If not set then no login will occur
username: env.DOCKER_USERNAME # optional
username: ${{ env.DOCKER_USERNAME # optional
# Password or personal access token used to log in to a Docker registry. If not set then no login will occur
password: env.DOCKER_PASSWORD # optional
password: ${{ env.DOCKER_PASSWORD }} # optional
# Server address of Docker registry. If not set then will default to Docker Hub
registry: env.DOCKER_REGISTRY_URL # optional
registry: ${{ env.DOCKER_REGISTRY_URL }} # optional
# Docker repository to tag the image with
repository: env.DOCKER_IMAGE_NAME
repository: ${{ env.DOCKER_IMAGE_NAME }}
# Comma-delimited list of tags. These will be added to the registry/repository to form the image's tags
tags: ${{ env.DOCKER_IMAGE_NAME }}:latest, ${{ env.DOCKER_IMAGE_NAME }}:${date +%s} # optional
tags: ${{ env.DOCKER_IMAGE_NAME }}:latest, ${{ env.DOCKER_IMAGE_NAME }}:${{ date +%s }} # optional
# Automatically tags the built image with the git reference as per the readme
#tag_with_ref: # optional
# Automatically tags the built image with the git short SHA as per the readme
Expand Down

0 comments on commit e099ab7

Please sign in to comment.