From de91ad635d40448df949760cc1dcbe4ef49fec02 Mon Sep 17 00:00:00 2001 From: Phill Pover Date: Thu, 27 Mar 2025 10:12:54 +0000 Subject: [PATCH] Fixing cd command --- .gitea/workflows/workflow.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/workflow.yaml b/.gitea/workflows/workflow.yaml index 4b563f1..dfb915a 100644 --- a/.gitea/workflows/workflow.yaml +++ b/.gitea/workflows/workflow.yaml @@ -10,9 +10,6 @@ jobs: container: image: catthehacker/ubuntu:act-latest steps: - - name: Print secret and var - run: | - echo "Username var: ${{ vars.REPO_USERNAME }}" - name: Login to container registry uses: docker/login-action@v3 with: @@ -22,14 +19,14 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Build backend - run: CD ./backend + run: cd ./backend - name: Build and push uses: docker/build-push-action@v6 with: push: true tags: git.anatid.net/tabris/anatid-blog-backend:latest - name: Build frontend - run: CD ../frontend + run: cd ../frontend - name: Build and push uses: docker/build-push-action@v6 with: