Skip to content

Commit

Permalink
update checkout v3 -> v4, try to fix pages deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoDralliam committed Jan 31, 2024
1 parent 1f29c22 commit dc8cba9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:

- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 1
Expand Down Expand Up @@ -76,14 +76,14 @@ jobs:
--metadata title="LogRel Overview"
docs/index.md
- name: Setup Pages
if: github.event.ref_name == github.event.repository.default_branch
if: github.ref_name == github.event.repository.default_branch
uses: actions/configure-pages@v3
- name: Upload artifact
if: github.event.ref_name == github.event.repository.default_branch
if: github.ref_name == github.event.repository.default_branch
uses: actions/upload-pages-artifact@v1
with:
path: 'docs'
- name: Deploy to GitHub Pages
if: github.event.ref_name == github.event.repository.default_branch
if: github.ref_name == github.event.repository.default_branch
id: deployment
uses: actions/deploy-pages@v1

0 comments on commit dc8cba9

Please sign in to comment.