blob: 017c93d51968f1a07783989ceb0ab648657a580b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
on:
schedule:
- cron: "5 * * *"
push:
branches:
- "main"
jobs:
test:
runs-on: docker
steps:
- run: echo All good!
container-build:
name: Build image
runs-on: docker
container:
image: registry.opensuse.org/opensuse/bci/nodejs:latest
steps:
- uses: actions/checkout@v4
- name: Buildah Action
uses: redhat-actions/buildah-build@v2
with:
image: test-image
containerfiles: |
./Containerfile
|