Skip to content

Commit 75cb018

Browse files
committed
wip: allow manual workflow triggers
1 parent 0e14f15 commit 75cb018

File tree

4 files changed

+45
-48
lines changed

4 files changed

+45
-48
lines changed

.github/workflows/ArchLinux.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: ArchLinux
2+
on:
3+
schedule:
4+
- cron: '0 5 * * 5'
5+
workflow_dispatch:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: fossable/goldboot-action@main
13+
with:
14+
context: ArchLinux
15+
output: ArchLinux.gb
16+
# output: gb://pub.goldboot.org/default/ArchLinux

.github/workflows/Debian.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Debian
2+
on:
3+
schedule:
4+
- cron: '0 5 * * 5'
5+
workflow_dispatch:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: fossable/goldboot-action@main
13+
with:
14+
context: Debian
15+
output: Debian.gb
16+
# output: gb://pub.goldboot.org/default/Debian

.github/workflows/build.yml

-48
This file was deleted.

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## `goldboot-examples`
2+
3+
This repository contains examples of `goldboot` configurations running on CI.
4+
5+
TODO screenshots
6+
7+
#### ArchLinux
8+
9+
![ArchLinux](https://github.com/goldboot/goldboot-examples/workflows/ArchLinux/badge.svg)
10+
11+
#### Debian
12+
13+
![Debian](https://github.com/goldboot/goldboot-examples/workflows/Debian/badge.svg)

0 commit comments

Comments
 (0)