2024-07-20 09:58:32 +00:00
|
|
|
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
|
|
name: "Rebuild latest release"
|
2022-04-26 20:11:31 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
2024-07-20 09:58:32 +00:00
|
|
|
- cron: "20 04 * * 1"
|
2022-04-26 20:11:31 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
|
2022-05-21 15:27:29 +00:00
|
|
|
permissions: {}
|
|
|
|
|
2022-04-26 20:11:31 +00:00
|
|
|
jobs:
|
|
|
|
trigger-rebuild:
|
2024-07-20 09:58:32 +00:00
|
|
|
name: "Trigger rebuild"
|
|
|
|
runs-on: "ubuntu-latest"
|
2022-04-26 20:11:31 +00:00
|
|
|
permissions:
|
2024-07-20 12:52:20 +00:00
|
|
|
actions: "write"
|
2024-07-20 09:58:32 +00:00
|
|
|
contents: "read"
|
2022-04-26 20:11:31 +00:00
|
|
|
steps:
|
2024-07-20 12:52:20 +00:00
|
|
|
- name: "Trigger rebuild"
|
|
|
|
uses: "hectorm/ghaction-trigger-workflow@04c79e7a4e0c0b94bbcff3829f38359e34f1ea9e"
|
|
|
|
with:
|
|
|
|
workflow-id: "main.yml"
|