diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index f2decce..aaa4aca 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -34,7 +34,7 @@ jobs: - name: build hydra image working-directory: .example/hydra - run: docker build . -t ghcr.io/makeopensource/hydra:beta + run: docker build ../../ -f ./Dockerfile -t ghcr.io/makeopensource/hydra:beta - name: push hydra run: docker push ghcr.io/makeopensource/hydra:beta diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1980997..d0ab69c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,14 +71,14 @@ jobs: - name: build hydra image latest working-directory: .example/hydra - run: docker build . -t ghcr.io/makeopensource/hydra:latest + run: docker build ../../ -f ./Dockerfile -t ghcr.io/makeopensource/hydra:latest - name: push hydra latest run: docker push ghcr.io/makeopensource/hydra:latest - name: build hydra image versioned working-directory: .example/hydra - run: docker build . -t ghcr.io/makeopensource/hydra:${{ steps.tagName.outputs.tag }} + run: docker build ../../ -f ./Dockerfile -t ghcr.io/makeopensource/hydra:${{ steps.tagName.outputs.tag }} - name: push hydra versioned run: docker push ghcr.io/makeopensource/hydra:${{ steps.tagName.outputs.tag }}