Skip to content

Commit

Permalink
Take 8
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorTatarnikov committed Nov 27, 2024
1 parent 0ca463f commit 3d6b723
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ jobs:
steps:
- name: Get week number
id: get-week-number
run:
echo "WEEK_NUMBER=$(date -u "+%V")" >> "$GITHUB_OUTPUT"
run: echo "WEEK_NUMBER=$(date -u '+%V')" >> "$GITHUB_OUTPUT"

test:
needs: [linting, manifest, get-week-number]
Expand Down Expand Up @@ -59,9 +58,9 @@ jobs:
~/.brainglobe
!~/.brainglobe/atlas.tar.gz
enableCrossOsArchive: 'true'
key: brainglobe-${{ steps.get-week-number.outputs.WEEK_NUMBER }}
key: brainglobe-${{ needs.get-week-number.outputs.WEEK_NUMBER }}
restore-keys: |
brainglobe-${{ steps.get-week-number.outputs.WEEK_NUMBER }}
brainglobe-${{ needs.get-week-number.outputs.WEEK_NUMBER }}
brainglobe
- uses: neuroinformatics-unit/actions/test@v2
Expand Down

0 comments on commit 3d6b723

Please sign in to comment.