From 61904df8ad79281b722803fbd88b45df0ba24b0d Mon Sep 17 00:00:00 2001 From: Jordan Olshevski Date: Wed, 3 Jan 2024 20:19:52 -0600 Subject: [PATCH] Try official docker action --- .github/workflows/release.yaml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e9512fb..a4ebc68 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -26,15 +26,14 @@ jobs: steps: - uses: actions/checkout@v3 name: Check out code - - - uses: mr-smithers-excellent/docker-build-push@v6 - name: Build and Push Image + + - name: Build and Push + uses: docker/build-push-action@v4 with: - image: profile - registry: ghcr.io - dockerfile: Dockerfile - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + context: . + push: true + tags: | + ${{ steps.commit.outputs.short }} deployStg: name: Deploy Staging