mirror of
https://github.com/Koenkk/zigbee-OTA.git
synced 2026-06-24 10:58:33 +00:00
Run auto download daily for specific manufacturers (#708)
This commit is contained in:
51
.github/workflows/run_autodl_daily.yml
vendored
Normal file
51
.github/workflows/run_autodl_daily.yml
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
name: Run daily auto download
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 12 * * *'
|
||||
|
||||
env:
|
||||
# comma separate values, no spaces
|
||||
MANUFACTURERS_TO_PROCESS: "inovelli"
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
run-autodl:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: pnpm/action-setup@v4
|
||||
with:
|
||||
version: 9
|
||||
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
registry-url: https://registry.npmjs.org/
|
||||
cache: pnpm
|
||||
|
||||
- name: Install dependencies
|
||||
run: pnpm i --frozen-lockfile
|
||||
|
||||
- name: Build
|
||||
run: pnpm run build
|
||||
|
||||
- name: Run Autodl
|
||||
uses: actions/github-script@v7
|
||||
env:
|
||||
NODE_EXTRA_CA_CERTS: cacerts.pem
|
||||
with:
|
||||
script: |
|
||||
const {runAutodl} = await import("${{ github.workspace }}/dist/ghw_run_autodl.js")
|
||||
|
||||
await runAutodl(github, core, context, "$MANUFACTURERS_TO_PROCESS")
|
||||
|
||||
- name: Commit changes
|
||||
run: |
|
||||
git config --global user.name 'github-actions[bot]'
|
||||
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
|
||||
git add .
|
||||
git commit -m "Daily autodl update" || echo 'Nothing to commit'
|
||||
git push
|
||||
Reference in New Issue
Block a user