Skip to content

Commit

Permalink
better way to refer to runner temp
Browse files Browse the repository at this point in the history
  • Loading branch information
dfalbel committed Feb 9, 2023
1 parent b8fe6a2 commit e26cb27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ jobs:
uses: actions/download-artifact@v3
with:
name: lantern
path: '${{ env.RUNNER_TEMP }}/lantern/'
path: '${{ runner.temp }}/'

- name: Set base URL for downloading
if: ${{ needs.lantern.result != 'skipped' }}
run: |
echo "LANTERN_BASE_URL=$RUNNER_TEMP/lantern/" >> $GITHUB_ENV
echo "LANTERN_BASE_URL=${{ runner.temp }}/" >> $GITHUB_ENV
shell: bash

- uses: actions/checkout@v3
Expand Down

0 comments on commit e26cb27

Please sign in to comment.