Skip to content

Commit

Permalink
added new env variable and change user
Browse files Browse the repository at this point in the history
  • Loading branch information
hvgazula committed Feb 14, 2024
1 parent 69e4081 commit b499419
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/aws_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,25 @@ jobs:
runs-on: ${{ needs.start-runner.outputs.label }} # run the job on the newly created runner
steps:
- name: Set $HOME
run: echo "HOME=${{ github.workspace }}" >> $GITHUB_ENV
run: |
echo "HOME=${{ github.workspace }}" >> $GITHUB_ENV
echo "PIP_ROOT_USER_ACTION=ignore" >> $GITHUB_ENV
- name: setting git credentials
run: |
git config --system user.name "hvgazula"
git config --system user.email "[email protected]"
echo $HOME
whoami
sudo su - ubuntu
whoami
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11

- name: Install Datalad
uses: datalad/datalad-action/install@main
with:
Expand Down

0 comments on commit b499419

Please sign in to comment.