From d8ce7587c4bdf191cf83dd080d4028807815ae68 Mon Sep 17 00:00:00 2001 From: antifallobst Date: Thu, 12 Oct 2023 00:13:12 +0200 Subject: [PATCH] ci: praying to the docker gods for this to work --- .gitea/workflows/deploy.yml | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index e280b81..3005c5d 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -10,18 +10,16 @@ jobs: build-docker: runs-on: ubuntu-latest steps: -# - name: Install Docker -# run: curl -fsSL https://get.docker.com | sh -# - name: Checkout -# uses: actions/checkout@v4 -# - name: Set up Docker Buildx -# uses: docker/setup-buildx-action@v3 -# - name: Build -# uses: docker/build-push-action@v5 -# with: -# context: . -# load: true -# tags: nerdcult_frontend:latest + - name: Checkout + uses: actions/checkout@v4 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Build + uses: docker/build-push-action@v5 + with: + context: . + load: true + tags: nerdcult_frontend:latest - name: Build Docker Image run: docker build -t nerdcult_frontend . - name: Inspect