Skip to content

Commit

Permalink
fix: minor issue reported by linters
Browse files Browse the repository at this point in the history
  • Loading branch information
davidB committed Nov 22, 2024
1 parent ee70a1e commit 58d9c8b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,13 @@ jobs:
- name: print deployment-url
env:
DEPLOYMENT_URL: ${{ steps.deploy.outputs.deployment-url }}
run: echo $DEPLOYMENT_URL
run: |
echo "url: $DEPLOYMENT_URL" >> $GITHUB_STEP_SUMMARY
- name: print pages-deployment-alias-url
env:
DEPLOYMENT_ALIAS_URL: ${{ steps.deploy.outputs.pages-deployment-alias-url }}
run: echo $DEPLOYMENT_ALIAS_URL
run: |
echo "alias-url: $DEPLOYMENT_ALIAS_URL" >> $GITHUB_STEP_SUMMARY
# # Deployment job
# deploy:
Expand Down
5 changes: 4 additions & 1 deletion cdviz-site/landingpage/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ <h3 class="mb-md text-xl font-bold">How Does it Work?</h3>
<p>
Trigger reaction on cdevents.
</p>
<p class="mt-2"></p>
<p class="mt-2">
<span class="icon-[simple-icons--n8n] h-5 w-5"></span>
<span class="icon-[simple-icons--make] h-5 w-5"></span>
<span class="icon-[simple-icons--argo] h-5 w-5"></span>
Expand All @@ -242,6 +242,9 @@ <h3 class="mb-md text-xl font-bold">How Does it Work?</h3>
<img
src="./assets/architectures/Drawing 2024-11-22-cdviz-architecture.excalidraw.svg"
class="rounded-xl object-cover"
alt="cdviz architecture"
width="100%"
height="100%"
/>
</div>
</div>
Expand Down

0 comments on commit 58d9c8b

Please sign in to comment.