alpine-bash/.forgejo/workflows/build.yaml
sqozz c884cd34ed
Some checks failed
/ build (push) Failing after 23s
Update .forgejo/workflows/build.yaml
2024-04-16 23:51:55 +02:00

14 lines
459 B
YAML

on:
push:
schedule:
- cron: '0 0 * */1 *'
jobs:
build:
runs-on: docker
steps:
- run: apk add buildah wget
- run: buildah login --username "{{ secrets.username }}" --password "{{ secrets.password }}" git.geekify.de
- run: wget https://git.geekify.de/Containers/alpine-bash/raw/branch/main/Dockerfile
- run: buildah build --isolation=chroot | tee container_id
- run: export CONTAINER_ID=$(tail -n 1 container_id)