From e19fd875ed54f16fc583a3486e62547ce4a5dde8 Mon Sep 17 00:00:00 2001 From: Damian Reeves <957246+DamianReeves@users.noreply.github.com> Date: Thu, 23 Apr 2020 05:15:21 -0400 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 956c29e..278351d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,13 +11,19 @@ jobs: runs-on: ubuntu-latest steps: + - name: set .bashrc path + shell: pwsh + run: echo "::set-env name=BASHRC_PATH::$Env:HOME/.bashrc" + - name: echo .bashrc path + shell: pwsh + run: echo "$env:BASHRC_PATH" - uses: DamianReeves/write-file-action@master with: - path: $HOME/.bashrc + path: ${{ env.BASHRC_PATH }} contents: | echo "Hello World!" write-mode: append - uses: actions/upload-artifact@v1 with: name: profile - path: ${{ env.home}}/.bashrc + path: ${{ env.BASHRC_PATH }}