alpine-bash/.forgejo/workflows/build.yaml
sqozz db152ecbbf
Some checks failed
/ build (push) Failing after 42s
Remove hardcoded paths from build file
2024-05-17 14:31:41 +02:00

14 lines
545 B
YAML

on:
push:
schedule:
- cron: '0 0 * */1 *'
jobs:
build:
runs-on: docker
steps:
- run: apk add buildah wget
- run: echo ${GITHUB_TOKEN} | buildah login --username ${{ secrets.username }} --password-stdin git.geekify.de
- 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) git.geekify.de/$(echo ${GITHUB_REPOSITORY} | tr '[:upper:]' '[:lower:]'):latest