Skip to content

Commit

Permalink
Updating artifacts upload in docs actions to the newest version
Browse files Browse the repository at this point in the history
  • Loading branch information
VeithMetro authored Jun 3, 2024
1 parent ca4c97b commit 844419d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/Build Documentation Preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:
if: ${{ github.event.action != 'closed' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: mkdocs build
- run: echo "${{ github.event.number }}" >> ./site/.pr_number
- name : Upload preview site artifact
uses : actions/upload-artifact@v3
uses : actions/upload-artifact@v4
with:
name: preview_site
path: ./site
Expand All @@ -43,8 +43,8 @@ jobs:
steps:
- run: mkdir pr_tmp
- run: echo "${{ github.event.number }}" >> ./pr_tmp/.pr_number
- uses : actions/upload-artifact@v3
- uses : actions/upload-artifact@v4
with:
name: closed_pr_number
path: ./pr_tmp
retention-days: 1
retention-days: 1

0 comments on commit 844419d

Please sign in to comment.