Skip to content

Commit

Permalink
Merge pull request #7 from EESSI/ocaisa-patch-1
Browse files Browse the repository at this point in the history
EESSI stack versions have been moved into a subfolder
  • Loading branch information
ocaisa authored May 9, 2022
2 parents b8a3442 + 43bbb8c commit 64e0031
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ runs:
${{ github.action_path }}/github-action-cvmfs/setup-cvmfs.sh
fi
echo "EESSI_SILENT=1" >> $GITHUB_ENV
echo "BASH_ENV=/cvmfs/pilot.eessi-hpc.org/$EESSI_STACK_VERSION/init/bash" >> $GITHUB_ENV
if [ "${{ inputs.eessi_stack_version }}" == "latest" ]; then
echo "BASH_ENV=/cvmfs/pilot.eessi-hpc.org/$EESSI_STACK_VERSION/init/bash" >> $GITHUB_ENV
else
echo "BASH_ENV=/cvmfs/pilot.eessi-hpc.org/versions/$EESSI_STACK_VERSION/init/bash" >> $GITHUB_ENV
fi
shell: bash
env:
THIS: ${{ github.action_path }}
Expand Down

0 comments on commit 64e0031

Please sign in to comment.