Skip to content

Commit

Permalink
added xd command to see special chars in env
Browse files Browse the repository at this point in the history
  • Loading branch information
lucky-lusa committed Aug 13, 2021
1 parent a4d9d32 commit faf2d36
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-push-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
env:
VERSION: ${{ env.VERSION }}
run: |
echo $VERSION
echo ${{ env.VERSION }}
echo $VERSION | xd -c
echo ${{ env.VERSION }} | xd -c
- name: Build and push eps
uses: docker/build-push-action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion docker/Eps.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ENV GOPATH /go
ENV PATH /go/bin:$PATH
ARG VERSION
ENV VERSION=$VERSION
RUN echo $VERSION
RUN echo $VERSION | xd -c
WORKDIR /app
COPY . .
RUN make
Expand Down

0 comments on commit faf2d36

Please sign in to comment.