Skip to content

Commit

Permalink
fix: ignore doc deploy errors
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Gammon <sam@elide.dev>
  • Loading branch information
sgammon committed Aug 14, 2023
1 parent 0375505 commit 0d6fde5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/deploy.docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ concurrency:
jobs:
build:
name: "Build: Docs"
continue-on-error: true
runs-on: ubuntu-latest
steps:
- name: Harden Runner
Expand All @@ -41,6 +42,7 @@ jobs:
source: ./docs
destination: ./_site
- name: "Artifact: Upload"
continue-on-error: true
uses: actions/upload-pages-artifact@a753861a5debcf57bf8b404356158c8e1e33150c # v2.0.0

deploy:
Expand All @@ -50,11 +52,13 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
continue-on-error: true
steps:
- name: Harden Runner
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
with:
egress-policy: audit
- name: "Deploy: GitHub Pages"
id: deployment
continue-on-error: true
uses: actions/deploy-pages@9dbe3824824f8a1377b8e298bafde1a50ede43e5 # v2.0.4

0 comments on commit 0d6fde5

Please sign in to comment.