alpine-bash/.forgejo/workflows/build.yaml
sqozz 2567c6bce5
Some checks failed
/ build (push) Failing after 23s
Use gitea-container-builder base image
2024-05-17 22:09:08 +02:00

13 lines
500 B
YAML

on:
push:
schedule:
- cron: '0 0 * */1 *'
jobs:
build:
runs-on: alpine-bash
steps:
- 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