Skip to content

Commit

Permalink
Remove "docker-" from container name
Browse files Browse the repository at this point in the history
  • Loading branch information
FlexibleToast committed Aug 7, 2023
1 parent 414bf2d commit 367c07b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Set image name to lowercase
run: echo "IMAGE_NAME=$(echo "$IMAGE_NAME" | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV
run: echo "IMAGE_NAME=$(echo "$IMAGE_NAME" | sed 's/docker-//I' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV

# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
Expand Down

0 comments on commit 367c07b

Please sign in to comment.