Skip to content

Commit

Permalink
(simatec) Responsive Design added
Browse files Browse the repository at this point in the history
  • Loading branch information
simatec committed Aug 25, 2024
1 parent e379364 commit 0344418
Show file tree
Hide file tree
Showing 5 changed files with 358 additions and 142 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/sync-readme-to-wiki.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Sync Docu to Wiki

on:
push:
paths:
- 'docs/de/shuttercontrol.md'
- 'docs/en/shuttercontrol.md'
- 'docs/de/img/*'

jobs:
sync-wiki:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Git
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Clone wiki repository
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git clone https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.wiki.git ./wiki
- name: Copy Docu to Wiki
run: |
cp docs/de/shuttercontrol.md ./wiki/Shuttercontrol-Wiki-Deutsch.md
cp docs/en/shuttercontrol.md ./wiki/Shuttercontrol-Wiki-English.md
cp docs/en/img/* ./wiki/img/
- name: Commit and push changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cd wiki
git add .
git commit -m "Sync Docu to Wiki"
git push https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.wiki.git
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ When the adapter crashes or an other Code error happens, this error message that
* (simatec) Fix Shutter up when open the Window
* (simatec) Test & Release updated
* (simatec) Fix Trigger
* (simatec) Responsive Design added
* (simatec) Docu Sync2Wiki added

### 1.7.3 (2024-06-20)
* (simatec) Fix Sunprotect End-Delay
Expand Down
Loading

0 comments on commit 0344418

Please sign in to comment.