15 lines
647 B
YAML
15 lines
647 B
YAML
on:
|
|
push:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
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 from $(tail -n 1 container_id)-working-container
|
|
- run: buildah run $(tail -n 1 container_id) esphome version
|
|
- run: buildah push $(tail -n 1 container_id) ${GITHUB_SERVER_URL/https:\/\//}/${GITHUB_REPOSITORY,,}:latest
|