Skip to content

Commit

Permalink
Merge pull request #532 from Homebrew/pre-build-fix
Browse files Browse the repository at this point in the history
pre-build: fix workflow errors
  • Loading branch information
carlocab committed Apr 27, 2024
2 parents cf11506 + 7d348b0 commit 7dd2c6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pre-build/action.yml
Expand Up @@ -77,13 +77,13 @@ runs:
shell: /bin/bash -euo pipefail {0}
env:
BOTTLES_DIR: ${{ inputs.bottles-directory }}
MACOS_VERSION: ${{ steps.setup-cache.macos_version }}
ARCH: ${{ steps.setup-cache.arch }}
MACOS_VERSION: ${{ steps.setup-cache.outputs.macos_version }}
ARCH: ${{ steps.setup-cache.outputs.arch }}

- name: Download bottles from GitHub Actions
if: fromJson(inputs.download-bottles)
uses: actions/download-artifact@v4
with:
pattern: bottles_${{ steps.setup-bottles.bottle_specifier }}*
pattern: bottles_${{ steps.setup-bottles.outputs.bottle_specifier }}*
path: ${{ inputs.bottles-directory }}
merge-multiple: true

0 comments on commit 7dd2c6c

Please sign in to comment.