Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jessica-mitchell committed Sep 13, 2024
1 parent 59b12c5 commit 9a89b65
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/setup_notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,15 @@ jobs:
runs-on: ubuntu-latest

env:
NAME: ebrains-experimental
NAME: ebrains-experimental
DISPLAY_NAME: "EBRAINS-experimental"

steps:
- name: Get NEST version
run: echo "NEST_VERSION = $(wget -q -O - 'https://gitlab.ebrains.eu/ri/tech-hub/platform/esd/ebrains-spack-builds/-/raw/master/spack.yaml?ref_type=heads&inline=false' | sed -rn 's/^\s.*nest@([0-9]\.[0-9]).*/\1/p')" >> $GITHUB_ENV
run: |
wget -q -O spack.txt 'https://gitlab.ebrains.eu/ri/tech-hub/platform/esd/ebrains-spack-builds/-/raw/master/spack.yaml?ref_type=heads&inline=false'
echo "NEST_VERSION = $(sed -rn 's/^\s.*nest@([0-9]\.[0-9]).*/\1/p' spack.txt)" >> $GITHUB_ENV
#run: echo "NEST_VERSION = $(wget -q -O - 'https://gitlab.ebrains.eu/ri/tech-hub/platform/esd/ebrains-spack-builds/-/raw/master/spack.yaml?ref_type=heads&inline=false' | sed -rn 's/^\s.*nest@([0-9]\.[0-9]).*/\1/p')" >> $GITHUB_ENV
- name: Use environment variable
run: |
Expand Down

0 comments on commit 9a89b65

Please sign in to comment.