Skip to content

Commit

Permalink
nope
Browse files Browse the repository at this point in the history
  • Loading branch information
Roguelazer committed Dec 13, 2024
1 parent eb04642 commit b188939
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ runs:
fi
echo "url=${url}" >> "$GITHUB_OUTPUT"
- name: Cache CLI
id: cache-cli
id: cache_cli
uses: actions/cache@v4
with:
path: /tmp/heroku-${{ inputs.version }}.tar.gz
key: ${{ runner.os }}-${{ runner.arch }}-${{ steps.get_url.outputs.url }}
- name: "Download CLI"
shell: bash
if: steps.cache.outputs.cache-hit != 'true'
if: steps.cache_cli.outputs.cache-hit != 'true'
run: |
curl -o "/tmp/heroku-${{ inputs.version }}.tar.gz" -sq "${{ steps.get_url.outputs.url }}"
- name: "Install Heroku CLI"
Expand Down

0 comments on commit b188939

Please sign in to comment.