Skip to content

Commit

Permalink
Remove invalid character in circleci image name
Browse files Browse the repository at this point in the history
  • Loading branch information
theodore86 committed Oct 17, 2022
1 parent d4ca76b commit 958e5c0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,3 @@ workflows:
- 'main'
jobs:
- 'execute_tests'
...
2 changes: 1 addition & 1 deletion .github/workflows/dockerize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: 'Update circleCI with the latest image tag'
run: |
yq e '.jobs.execute_tests.docker[0].image' -e .circleci/config.yml && \
yq '.jobs.execute_tests.docker[0].image = "${{ env.DOCKERHUB_REPO }}):${{ steps.git_short_sha.outputs.short_sha }}"' \
yq '.jobs.execute_tests.docker[0].image = "${{ env.DOCKERHUB_REPO }}:${{ steps.git_short_sha.outputs.short_sha }}"' \
-i .circleci/config.yml
- name: 'Build and push docker image'
Expand Down
2 changes: 0 additions & 2 deletions .yamllint
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ rules:
braces:
min-spaces-inside: 1
max-spaces-inside: 1
document-end:
level: warning
empty-values:
forbid-in-block-mappings: false
forbid-in-flow-mappings: false
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ ENV PATH="${BUNDLE_BIN}:${PATH}"

RUN bundle config set without "development test"

CMD ["bash"]
# CMD ["bash"]

0 comments on commit 958e5c0

Please sign in to comment.