Skip to content

Commit 6c0635b

Browse files
committed
#powerpoint update logo
1 parent 4505f06 commit 6c0635b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/release-powerpoint-addin.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,15 @@ env:
1717

1818
jobs:
1919
release-powerpoint-addin:
20-
if: github.event_name == 'workflow_dispatch' || contains(github.event.head_commit.message, '#powerpo')
20+
if: github.event_name == 'workflow_dispatch' || contains(github.event.head_commit.message, '#powerpoint')
2121
runs-on: ubuntu-latest
2222
permissions:
2323
contents: read
2424
deployments: write
2525
defaults:
2626
run:
2727
working-directory: apps/powerpoint-addin
28+
2829
steps:
2930
- name: Checkout repository
3031
uses: actions/checkout@v4

apps/powerpoint-addin/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<!-- Loading Screen -->
1515
<div id="loadingScreen" class="flex flex-col items-center justify-center min-h-screen">
1616
<div class="logo-container mb-6">
17-
<img src="https://raw.githubusercontent.com/estruyf/vscode-demo-time/main/assets/logo/demotime-square.png"
17+
<img src="https://raw.githubusercontent.com/estruyf/vscode-demo-time/main/apps/vscode-extension/assets/logo/demotime-square.png"
1818
alt="Demo Time Logo" class="w-32 h-32" />
1919
</div>
2020
<div class="spinner"></div>

apps/powerpoint-addin/src/components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ interface HeaderProps {
66
}
77

88
export const Header: React.FC<HeaderProps> = ({
9-
logoUrl = "https://raw.githubusercontent.com/estruyf/vscode-demo-time/main/assets/logo/demotime-square.png",
9+
logoUrl = "https://raw.githubusercontent.com/estruyf/vscode-demo-time/main/apps/vscode-extension/assets/logo/demotime-square.png",
1010
title = "Demo Time Trigger"
1111
}) => {
1212
return (

0 commit comments

Comments
 (0)