Skip to content

Commit

Permalink
[v3-Maintenance]-Consolidate-and-Document-Core-Changes-in-v3
Browse files Browse the repository at this point in the history
  • Loading branch information
ReneWerner87 committed Apr 20, 2024
1 parent 1e5838f commit eb3493d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
name: Build & Deploy GitHub Pages
runs-on: ubuntu-latest
steps:
- name: Get previous workflow status
uses: Mercymeilya/last-workflow-status@v0.3.3
id: last_status
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
Expand All @@ -39,7 +44,7 @@ jobs:
publish_dir: ./build
cname: docs.gofiber.io
- uses: sarisia/actions-status-discord@v1
if: ${{ failure() }}
if: ${{ failure() || (success() && steps.last_status.outputs.last_status == 'failure') }}
with:
title: "deploy"
description: "Docs: Build & Deploy GitHub Pages"
Expand Down
2 changes: 2 additions & 0 deletions docs/core/api/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ sidebar_position: 2

import RoutingHandler from './../partials/routing/handler.md';

<foo>broken5

### Static

Use the **Static** method to serve static files such as **images**, **CSS,** and **JavaScript**.
Expand Down

0 comments on commit eb3493d

Please sign in to comment.