summaryrefslogtreecommitdiff
path: root/.forgejo/workflows/demo.yaml
blob: e9cbd71a3b8a9ca35ae02b042859883d96b4824e (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
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

    steps:
    - uses: actions/checkout@v4

    - name: Buildah Action
      uses: redhat-actions/buildah-build@v2
      with:
        image: test-image
        containerfiles: |
          ./Containerfile