diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 309a306..e0817d6 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -19,11 +19,7 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - - name: Build and push Main web app container image to registry - uses: docker/build-push-action@v4 - with: - context: . - push: true - tags: | - jake/sprout-db-migrations:latest - file: ./Dockerfile + - name: Build + run: docker build -t jake/sprout-db-migrations:latest . + - name: Push + run: docker push jake/sprout-db-migrations:latest