Skip to content

Commit 7d07ffa

Browse files
committed
Update
1 parent 26b2e29 commit 7d07ffa

File tree

5 files changed

+456
-2
lines changed

5 files changed

+456
-2
lines changed

.github/workflows/deploy-pages.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Deploy Configuration Tool to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
paths:
7+
- 'configuration.html'
8+
- 'index.html'
9+
- '.github/workflows/deploy-pages.yml'
10+
workflow_dispatch:
11+
12+
permissions:
13+
contents: read
14+
pages: write
15+
id-token: write
16+
17+
concurrency:
18+
group: "pages"
19+
cancel-in-progress: false
20+
21+
jobs:
22+
deploy:
23+
environment:
24+
name: github-pages
25+
url: ${{ steps.deployment.outputs.page_url }}
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Checkout
29+
uses: actions/checkout@v4
30+
31+
- name: Setup Pages
32+
uses: actions/configure-pages@v4
33+
34+
- name: Upload artifact
35+
uses: actions/upload-pages-artifact@v3
36+
with:
37+
path: '.'
38+
39+
- name: Deploy to GitHub Pages
40+
id: deployment
41+
uses: actions/deploy-pages@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A professional graphics library for Seeed hardware platforms, forked from [TFT_e
66

77
To simplify the hardware setup, we provide an online tool that helps you quickly generate the configuration code for your specific hardware combination.
88

9-
➡️ **[Click here to open the Online Configuration Tool](https://qingwind6.github.io/Display_online_config_tool/)**
9+
➡️ **[Click here to open the Online Configuration Tool](https://seeed-studio.github.io/Seeed_GFX/)**
1010

1111
## Key Features
1212

configuration.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ <h2 data-lang-key="step2_title">Step 2: (ePaper Only) Select Your Driver Board T
173173

174174
<h2 data-lang-key="step3_title">Final step: Copy the Generated Code</h2>
175175
<p class="final-instruction" data-lang-key="final_step_instruction"></p>
176-
<img src="img.png" alt="Instructional image" class="final-instruction-img">
176+
<img src="thumbprint.png" alt="Instructional image" class="final-instruction-img">
177177
<div class="code-container">
178178
<pre><code id="outputCode"></code></pre>
179179
<button id="copyButton" class="copy-btn" onclick="copyToClipboard()" title="Copy Code">

0 commit comments

Comments
 (0)