Skip to content

Commit

Permalink
Fix a release workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
i-sevostyanov committed Apr 22, 2021
1 parent d0d5dab commit a3f34e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: echo ${{ secrets.CR_PAT }} | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin

- name: Build Docker image
run: docker build . --tag ghcr.io/i-sevostyanov/NanoDB:${{ steps.prepare.outputs.tag_name }}
run: docker build . --tag ghcr.io/i-sevostyanov/nanodb:${{ steps.prepare.outputs.tag_name }}

- name: Push image to registry
run: docker push ghcr.io/i-sevostyanov/NanoDB:${{ steps.prepare.outputs.tag_name }}
run: docker push ghcr.io/i-sevostyanov/nanodb:${{ steps.prepare.outputs.tag_name }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ FROM alpine:3.13
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt

# Copy binary into PATH
COPY --from=build-env /go/bin/cli /usr/local/bin/repl
COPY --from=build-env /go/bin/repl /usr/local/bin/repl

ENTRYPOINT ["repl"]

0 comments on commit a3f34e4

Please sign in to comment.