diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 6c1b4f7bc1..0af66e9100 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -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