gitea-container-builder/.forgejo/workflows/build.yaml

13 lines
510 B
YAML
Raw Normal View History

2024-05-17 21:27:32 +02:00
on:
push:
schedule:
2024-05-19 01:20:12 +02:00
- cron: '0 0 * * *'
2024-05-17 21:27:32 +02:00
jobs:
build:
runs-on: gitea-container-builder
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