fix: Fixing push to DockerHub (#5468)

* fix: Fixing push to DockerHub

* Update .github/workflows/publish-docker.yml

Co-authored-by: Aakansha Doshi <aakansha1216@gmail.com>
This commit is contained in:
Andrew 2022-07-26 06:43:09 -04:00 committed by GitHub
parent ac66665b64
commit f4312bba5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,11 +10,16 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - name: Checkout repository
- uses: docker/build-push-action@v2 uses: actions/checkout@v3
- name: Login to DockerHub
uses: docker/login-action@v2
with: with:
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_PASSWORD }}
repository: excalidraw/excalidraw - name: Build and push
tag_with_ref: true uses: docker/build-push-action@v3
tag_with_sha: true with:
context: .
push: true
tags: excalidraw/excalidraw:latest