mirror of
https://github.com/Koenkk/zigbee-OTA.git
synced 2026-06-24 16:13:56 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
49 lines
1.5 KiB
YAML
49 lines
1.5 KiB
YAML
name: Overwrite cache
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
manufacturers:
|
|
description: 'Only trigger overwrite for given manufacturers (CSV, no space).'
|
|
required: false
|
|
default: ''
|
|
type: string
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
overwrite-cache:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- uses: pnpm/action-setup@v5
|
|
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 24
|
|
registry-url: https://registry.npmjs.org/
|
|
cache: pnpm
|
|
|
|
- name: Install dependencies
|
|
run: pnpm i --frozen-lockfile
|
|
|
|
- name: Build
|
|
run: pnpm run build
|
|
|
|
- name: Overwrite cache
|
|
uses: actions/github-script@v9
|
|
with:
|
|
script: |
|
|
const {overwriteCache} = await import("${{ github.workspace }}/dist/gwh_overwrite_cache.js")
|
|
|
|
await overwriteCache(github, core, context, "${{ inputs.manufacturers || '' }}")
|
|
|
|
- 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 "Cache overwrite" || echo 'Nothing to commit'
|
|
git push
|