From 16722fb65999d51cdd72f4d1edd984bcdf5ea795 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Tue, 31 Mar 2020 14:27:27 +0200 Subject: [PATCH] workflows: mount unzip from runner --- .github/workflows/publish-commit-bottles.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/publish-commit-bottles.yml b/.github/workflows/publish-commit-bottles.yml index 969710ae41b..deacb9b52f8 100644 --- a/.github/workflows/publish-commit-bottles.yml +++ b/.github/workflows/publish-commit-bottles.yml @@ -7,6 +7,7 @@ jobs: runs-on: ubuntu-latest container: image: homebrew/brew + options: -v /usr/bin/unzip:/usr/bin/unzip env: HOMEBREW_DEVELOPER: 1 HOMEBREW_FORCE_HOMEBREW_ON_LINUX: 1 @@ -37,10 +38,6 @@ jobs: run: | rm -rf $(brew --repository ${{github.repository}}) ln -s $GITHUB_WORKSPACE $(brew --repository ${{github.repository}}) - - name: Install unzip - run: | - apt-get update - apt-get install -yq unzip - name: Setup git run: | git config --global user.name "${{steps.env.outputs.name}}"