Skip to content

Commit

Permalink
debugversion
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentsenta committed Aug 4, 2023
1 parent 46b7d58 commit afc66ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ runs:
DOCKER_REGISTRY_URL: ${{ inputs.docker-registry-url }}
DOCKER_BUILDKIT: '0' # Using remote git context with buildkit does not support referencing merge commits via SHA
BUILD_ARGS: ${{ inputs.build-args }}
run: docker build -t ${DOCKER_REGISTRY_URL#http*://}/$IMAGE:$TAG -f $DOCKERFILE ${BUILD_ARGS} $GITHUB_SERVER_URL/$REPOSITORY.git#$REF
run: |
docker build -t ${DOCKER_REGISTRY_URL#http*://}/$IMAGE:$TAG -f $DOCKERFILE ${BUILD_ARGS} $GITHUB_SERVER_URL/$REPOSITORY.git#$REF
docker run ${DOCKER_REGISTRY_URL#http*://}/$IMAGE:$TAG --version
shell: bash
- id: run
env:
Expand Down

0 comments on commit afc66ca

Please sign in to comment.