Skip to content

Commit

Permalink
use https
Browse files Browse the repository at this point in the history
  • Loading branch information
Moritz-Alexander-Kern committed Apr 18, 2024
1 parent 5323039 commit 9fa145c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/cache_elephant_data.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Get current hash (SHA) of the elephant_data repo
id: elephant-data
run: |
echo "dataset_hash=$(git ls-remote https://gin.g-node.org/NeuralEnsemble/elephant-data.git HEAD | cut -f1)" >> $GITHUB_OUTPUT
echo "dataset_hash=$(git ls-remote https://gin.g-node.org/NeuralEnsemble/elephant-data.git HEAD | cut -f1)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
# Loading cache of elephant-data
Expand All @@ -51,15 +51,15 @@ jobs:
if: steps.cache-datasets.outputs.cache-hit != 'true'
# Download repository and also fetch data
run: |
gin --version
git clone git@gin.g-node.org:/NeuralEnsemble/elephant-data.git
cd ~/elephant-data
gin getc .
gin --version
git clone https://gin.g-node.org/NeuralEnsemble/elephant-data.git
cd ~/elephant-data
gin getc .
- name: Show size of the cache to assert data is downloaded
run: |
cd ~
pwd
du -hs elephant-data
cd elephant-data
pwd
cd ~
pwd
du -hs elephant-data
cd elephant-data
pwd

0 comments on commit 9fa145c

Please sign in to comment.