Skip to content

Commit

Permalink
Periodically run build to keep fresh PDFs around.
Browse files Browse the repository at this point in the history
  • Loading branch information
grafikrobot committed May 6, 2024
1 parent d9ea123 commit 56aeadb
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/draft.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: "Build Draft"

on: [pull_request, push]
on:
workflow_dispatch:
pull_request:
push:
schedule:
- cron: '13 5 * * 0'

jobs:
build:
Expand All @@ -9,7 +14,7 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@main

- name: Update APT Cache
if: matrix.cfg.name == 'Linux'
Expand All @@ -33,7 +38,7 @@ jobs:
run: b2 --debug-configuration -d+2 doc-stage=draft,final

- name: Upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@main
with:
name: ecosystem-is
path: ecosystem*.pdf

0 comments on commit 56aeadb

Please sign in to comment.