Skip to content

Commit

Permalink
Add repo checkout steps
Browse files Browse the repository at this point in the history
  • Loading branch information
Arclite committed Mar 16, 2024
1 parent 9b5931a commit 74495d8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
name: "Build Site"
runs-on: "ubuntu-22.04"
steps:
- name: "Checkout Repo"
uses: "actions/checkout@v4"

- name: "Run Hugo"
uses: "./.github/actions/hugo-build"

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ jobs:
name: "Build Site"
runs-on: "ubuntu-22.04"
steps:
- name: "Checkout Repo"
uses: "actions/checkout@v4"

- name: "Run Hugo"
uses: ./.github/actions/hugo-build
uses: "./.github/actions/hugo-build"

0 comments on commit 74495d8

Please sign in to comment.