Skip to content

Commit

Permalink
remove duplicated caching growl step
Browse files Browse the repository at this point in the history
cache will be restored in previous Cache Growl Installer step

Signed-off-by: Outsider <outsideris@gmail.com>
  • Loading branch information
outsideris committed Jan 5, 2021
1 parent c21a90f commit e9661aa
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/mocha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ jobs:
uses: actions/cache@v2
with:
path: GrowlInstaller
key: '${{ runner.os }}-growl-installer'
key: '${{ runner.os }}-growl-installer-msi'
restore-keys: |
${{ runner.os }}-growl-installer
${{ runner.os }}-growl-installer-msi
- name: Download Growl Installer (Windows)
if: "${{ matrix.os == 'windows-2019' && steps.cache-growl.outputs.cache-hit != 'true'}}"
run: >
Expand All @@ -138,14 +138,6 @@ jobs:
7z x $seaPath -oGrowlInstaller | out-null
echo "Done."
- name: Retrieve Growl Installer (Windows)
if: "${{ matrix.os == 'windows-2019' }}"
uses: actions/cache@v2
with:
path: GrowlInstaller
key: '${{ runner.os }}-growl-installer'
restore-keys: |
${{ runner.os }}-growl-installer
- name: Add Growl Installer to Path (Windows)
if: "${{ matrix.os == 'windows-2019' }}"
run: 'echo "C:\Program Files (x86)\Growl for Windows" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8'
Expand Down

0 comments on commit e9661aa

Please sign in to comment.