From a2e04a7935d41e4d283d0e7b0627e3423fc3cef5 Mon Sep 17 00:00:00 2001 From: Donghee Na Date: Mon, 23 Sep 2024 12:33:40 -0700 Subject: [PATCH] ci: Set working directory as autoconf (#2) * ci: Set working directory as autoconf * fix --- .github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 276cd51..f0d8b38 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,9 +15,6 @@ jobs: matrix: autoconf_version: ["2.69", "2.71", "2.72"] runs-on: ubuntu-latest - defaults: - run: - working-directory: ./autoconf env: TAG: autoconf:${{ matrix.autoconf_version }}-${{ github.run_id }} steps: @@ -28,7 +25,7 @@ jobs: - name: Build Dockerfile uses: docker/build-push-action@v5 with: - context: . + context: ./autoconf build-args: AUTOCONF_VERSION=${{ matrix.autoconf_version }} load: true tags: ${{ env.TAG }}