alpine-bash/.forgejo/workflows/build.yaml
sqozz 3ae1d0e586
All checks were successful
/ build (push) Successful in 42s
Update .forgejo/workflows/build.yaml
2024-04-26 11:14:52 +02:00

13 lines
494 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: buildah push $(tail -n 1 container_id) git.geekify.de/containers/alpine-bash:latest