From 0aa8ae91b61d9b94e7bdd41a7d84c756a2c28605 Mon Sep 17 00:00:00 2001 From: Hugo Bollon Date: Wed, 11 Sep 2024 11:52:47 +0200 Subject: [PATCH] ci(release): set working dir to ./extract --- .github/workflows/release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f2c6f70..78bdda5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,9 +20,6 @@ jobs: with: fetch-depth: 0 - - name: Set current directory to Extract - run: cd extract - - name: Login to GHCR uses: docker/login-action@v3 with: @@ -31,7 +28,9 @@ jobs: password: ${{secrets.GITHUB_TOKEN}} - name: Build Docker images for GHCR + working-directory: ./extract run: make build_ghcr - name: Push Docker images to GHCR + working-directory: ./extract run: make push_ghcr