gitea-container-builder/.forgejo/workflows/build.yaml
sqozz c33fc7722e
Some checks failed
/ build (push) Failing after 24s
Use alpine-bash as base container
2024-05-17 21:49:49 +02:00

14 lines
546 B
YAML

on:
push:
schedule:
- cron: '0 0 * */1 *'
jobs:
build:
runs-on: gitea-container-builder
steps:
- run: apk add buildah wget
- run: buildah login --username ${{ secrets.username }} --password ${{ secrets.password }} ${GITHUB_SERVER_URL}
- run: wget ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/raw/branch/${GITHUB_REF_NAME}/Dockerfile
- run: buildah build --isolation=chroot | tee container_id
- run: buildah push $(tail -n 1 container_id) ${GITHUB_SERVER_URL/https:\/\//}/${GITHUB_REPOSITORY,,}:latest