Skip to content

Commit

Permalink
bugfix(documentation): fixed variable
Browse files Browse the repository at this point in the history
  • Loading branch information
dixxond committed Dec 4, 2024
1 parent ca913b7 commit e430db2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildGithubPage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
publish-api-documentation:
name: Publish api documentation
needs: check-changes-api-doc
if: ${{needs.api-doc-change.outputs.changed == 'true'}}
if: ${{needs.check-changes-api-doc.outputs.changed == 'true'}}
permissions:
id-token: "write"
pages: "write"
Expand All @@ -63,7 +63,7 @@ jobs:
publish-client-documentation:
name: Publish client documentation
needs: check-changes-client-doc
if: ${{needs.client-doc-change.outputs.changed == 'true'}}
if: ${{needs.check-changes-client-doc.outputs.changed == 'true'}}
permissions:
id-token: "write"
pages: "write"
Expand Down
2 changes: 1 addition & 1 deletion api/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!DOCTYPE html><html class="default" lang="en" data-base="."><head><meta charset="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>orange-api</title><meta name="description" content="Documentation for orange-api"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script defer src="assets/main.js"></script><script async src="assets/icons.js" id="tsd-icons-script"></script><script async src="assets/search.js" id="tsd-search-script"></script><script async src="assets/navigation.js" id="tsd-nav-script"></script><script async src="assets/hierarchy.js" id="tsd-hierarchy-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search"><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="index.html" class="title">orange-api</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><h1>orange-api</h1></div><div class="tsd-panel tsd-typography"><a id="api" class="tsd-anchor"></a><h1 class="tsd-anchor-link">API<a href="#api" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="assets/icons.svg#icon-anchor"></use></svg></a></h1><a id="environment-variables" class="tsd-anchor"></a><h2 class="tsd-anchor-link">Environment variables<a href="#environment-variables" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="assets/icons.svg#icon-anchor"></use></svg></a></h2><p>To run this application, several environment variables are required.
Since these may include sensitive credentials, do not push your <code>.env</code> file.</p>
<table>
<table>
<thead>
<tr>
<th>environment Variable</th>
Expand Down

0 comments on commit e430db2

Please sign in to comment.