mirror of
https://github.com/wez/wezterm.git
synced 2024-11-10 06:34:17 +03:00
92f5c14373
Hook up fedora rpms to the "nightly" nee hourly builds. Maybe make it so that tags build a release. Nerf more of the old azure pipelines config
17 lines
450 B
YAML
17 lines
450 B
YAML
# vim:et:sw=2:ts=2:
|
|
|
|
schedules:
|
|
- cron: '50 * * * *'
|
|
displayName: "scheduled GH Pages re-deploy"
|
|
branches:
|
|
include: ['master']
|
|
|
|
jobs:
|
|
- job: 'Rebuild_GH_Pages'
|
|
pool:
|
|
vmImage: 'ubuntu-16.04'
|
|
steps:
|
|
- bash: 'curl -u wez:$(github.pat) -X POST https://api.github.com/repos/wez/wezterm/pages/builds -H "Accept: application/vnd.github.mister-fantastic-preview+json"'
|
|
displayName: request github pages rebuild
|
|
|