From 4340026d547492c6de5ced8cc55287b3d332584f Mon Sep 17 00:00:00 2001 From: Erin Grasmick Date: Tue, 21 Jul 2020 16:32:36 +0200 Subject: [PATCH] change working directory --- .github/workflows/backend.yml | 1 + .github/workflows/frontend.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index f6923f1..71d8d39 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -24,6 +24,7 @@ jobs: run: cargo run --release -- --help - name: Build and Push template image + working-directory: ./backend uses: docker/build-push-action@v1 # https://github.com/docker/build-push-action with: username: ${{ secrets.DOCKER_USERNAME }} diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 052b67b..4b707c7 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -38,6 +38,7 @@ jobs: run: yarn build - name: Build and Push template image + working-directory: ./frontend uses: docker/build-push-action@v1 # https://github.com/docker/build-push-action with: username: ${{ secrets.DOCKER_USERNAME }}