alpine-bash/.forgejo/workflows/build.yaml
sqozz 566480032f
Some checks failed
/ build (push) Failing after 26s
Update .forgejo/workflows/build.yaml
2024-04-16 23:47:30 +02:00

15 lines
431 B
YAML

on:
push:
schedule:
- cron: '0 0 * */1 *'
jobs:
build:
runs-on: docker
steps:
- run: echo {{ secrets.username }}
- run: echo {{ secrets.password }}
- run: apk add buildah wget tee
- 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)