Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jagapiou authored Sep 11, 2024
1 parent 0138d74 commit 13bcd20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ runs:
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: venv
key: install-examples-${{ steps.setup.outputs.os-version }}-py${{ steps.setup.outputs.python-version }}-${{ hashFiles('setup.py') }}-${{ hashFiles( 'examples/requirements.txt') }}
key: install-examples-${{ steps.os-info.outputs.name }}-${{ steps.os-info.outputs.version }}-py${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('setup.py') }}-${{ hashFiles( 'examples/requirements.txt') }}

- name: Restore Concordia installation
if: steps.restore-examples.outputs.cache-hit != 'true'
id: restore-concordia
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
with:
path: venv
key: install-concordia-${{ steps.setup.outputs.os-version }}-py${{ steps.setup.outputs.python-version }}}-${{ hashFiles('setup.py') }}
key: install-concordia--${{ steps.os-info.outputs.name }}-${{ steps.os-info.outputs.version }}-py${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('setup.py') }}
restore-keys: |
install-concordia-${{ steps.setup.outputs.os-version }}-py${{ steps.setup.outputs.python-version }}-
install-concordia--${{ steps.os-info.outputs.name }}-${{ steps.os-info.outputs.version }}-py${{ steps.setup-python.outputs.python-version }}-
- name: Activate venv
shell: bash
Expand Down

0 comments on commit 13bcd20

Please sign in to comment.