From 97386c6e04eafb4b4866ef1d8f60cd7528f825e7 Mon Sep 17 00:00:00 2001 From: Norbert Preining Date: Tue, 17 Sep 2024 11:32:26 +0900 Subject: [PATCH] GNU tar already installed on Mac OS runner, fix upload directive --- .github/workflows/mac.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 54a4ca7..07f2737 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: install host sbcl - run: brew install sbcl gnu-tar + run: brew install sbcl - name: build run: | ./configure --with-lisp=sbcl --enable-distribution @@ -24,5 +24,5 @@ jobs: - name: save binary uses: actions/upload-artifact@v4 with: - name: cafeobj-1.6.2-sbcl-x64Darwin.tar.gz cafeobj-1.6.2-sbcl-${{ matrix.arch }}-darwin.tar.gz - path: cafeobj-1.6.2-sbcl-${{ matrix.arch }}-darwin.tar.gz + name: cafeobj-1.6.2-sbcl-${{ matrix.arch }}-darwin.tar.gz + path: cafeobj-1.6.2-sbcl-x64Darwin.tar.gz