Skip to content

Commit aaee26b

Browse files
committed
fixed type in workflow
1 parent d1c9167 commit aaee26b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ jobs:
4949
- uses: actions/checkout@v2
5050

5151
- name: Build image
52-
run: docker build . --file Dockerfile --tag $IMAGE_NAME:${{ github.sha }}
52+
run: docker build . --file Dockerfile --tag $IMAGE_NAME
5353

5454
- name: Log into registry
5555
run: echo "${{ secrets.SECRET_GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
5656

5757
- name: Push image
5858
run: |
59-
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME:${{ github.sha }}
59+
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME
6060
6161
# Change all uppercase to lowercase
6262
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')

0 commit comments

Comments
 (0)