Skip to content

Commit

Permalink
use runner.temp attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
mamullen13316 committed May 13, 2024
1 parent a77bc12 commit bdd6145
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/example_output.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Create tar file
run: tar -cvf "${RUNNER_TEMP}/artifact.tar" "sample_output/results_html_web"
run: tar -cvf ${{ runner.temp }}/artifact.tar sample_output/results_html_web
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: "${RUNNER_TEMP}/artifact.tar"
path: ${{ runner.temp }}/artifact.tar
retention-days: 1
if-no-files-found: error
- name: Deploy to GitHub Pages
Expand Down

0 comments on commit bdd6145

Please sign in to comment.