esphome/.forgejo/workflows/build.yaml
sqozz 18d4de0fa5
All checks were successful
/ build (push) Successful in 1m43s
Initial container definition
2024-06-05 20:34:08 +02:00

19 lines
856 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
name: "Fetch Dockerfile"
- run: buildah build --isolation=chroot | tee container_id
name: "Build container"
- run: echo "WORK_CONTAINER_ID=$(buildah from $(tail -n 1 container_id))" >> $GITHUB_OUTPUT
name: "Fetch freshly build container"
id: buildah-from
- run: buildah run --isolation=chroot ${{ steps.buildah-from.outputs.WORK_CONTAINER_ID }} esphome version
- run: buildah push $(tail -n 1 container_id) ${GITHUB_SERVER_URL/https:\/\//}/${GITHUB_REPOSITORY,,}:latest