From b7751a24fd9384e7b052786b04b47d0fc2c42849 Mon Sep 17 00:00:00 2001 From: Sebastian Erives Date: Sun, 6 Aug 2023 12:42:47 -0600 Subject: [PATCH] Fix again build_natives.yml --- .github/workflows/build_natives.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build_natives.yml b/.github/workflows/build_natives.yml index 99698cb..14fd3e0 100644 --- a/.github/workflows/build_natives.yml +++ b/.github/workflows/build_natives.yml @@ -91,17 +91,15 @@ jobs: name: native-mac-amd64 path: ${{github.workspace}}/amd64 - name: Rename Apple Silicon native to append architecture - with: - run: | - brew install rename - cd ${{github.workspace}}/ - rename -a -aarch64 * + run: | + brew install rename + cd ${{github.workspace}}/ + rename -a -aarch64 * - name: Rename natives to append architecture - with: - run: | - brew install rename - cd ${{github.workspace}}/amd64 - rename -a amd64- * + run: | + brew install rename + cd ${{github.workspace}}/amd64 + rename -a amd64- * - uses: marvinpinto/action-automatic-releases@latest with: repo_token: ${{ secrets.GITHUB_TOKEN }}