Skip to content

Commit

Permalink
correct for error
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin committed Feb 18, 2023
1 parent 308d0c2 commit da4e23d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/caches_cron_job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,11 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Get the HEAD hash (SHA) of the ephy_testing_data repo
- name: Get current hash (SHA) of the ephy_testing_data repo
id: repo_hash
run: |
echo "dataset_hash=${{git ls-remote https://gin.g-node.org/NeuralEnsemble/ephy_testing_data.git HEAD | cut -f1}}" >> $GITHUB_OUTPUT
echo "dataset_hash=$(git ls-remote https://gin.g-node.org/NeuralEnsemble/ephy_testing_data.git HEAD | cut -f1)"
echo "dataset_hash=$(git ls-remote https://gin.g-node.org/NeuralEnsemble/ephy_testing_data.git HEAD | cut -f1)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: cache-datasets
with:
Expand Down

0 comments on commit da4e23d

Please sign in to comment.