This commit is contained in:
2025-07-26 16:44:17 +02:00
parent 18c2bb8474
commit 6fac05057c
2 changed files with 1 additions and 31 deletions

View File

@@ -1,5 +1,3 @@
name: PlatformIO CI (esp32thing only)
on: [push]
jobs:
@@ -36,4 +34,4 @@ jobs:
tag_name: "${{ github.ref_name }}"
files: firmware.bin
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -1,28 +0,0 @@
name: Sync Folder to Another Repo
on:
push:
paths:
- 'data/**'
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout source repo
uses: actions/checkout@v3
- name: Copy folder and push to target repo
run: |
mkdir temp
cp -r data/* temp/
cd temp
git init
git config user.name "Gitea Action Bot"
git config user.email "action@gitea.local"
git remote add origin https://${TOKEN}@git.reptilfpv.de/reptil1990/AquaMasterFrontend
git add .
git commit -m "Sync data from source repo"
git push --force origin main