From 286db14a5418a316ba61ca1ae39f78668cb593fb Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Fri, 8 Dec 2023 00:29:36 -0500 Subject: [PATCH] Fix ghcr.io deploy step --- .github/workflows/CI.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 51a26d692e..b8dbc1248d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -189,12 +189,13 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} repository: devosoft/empirical tag_with_ref: true - - name: Push to GHCR + - name: Push to ghcr.io uses: docker/build-push-action@v1 with: context: . push: true username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - repository: devosoft/empirical + repository: ghcr.io/devosoft/empirical tag_with_ref: true +