2021-05-25 18:59:36 +00:00
|
|
|
# This is a basic workflow to help you get started with Actions
|
|
|
|
|
2021-12-03 11:08:06 +00:00
|
|
|
name: BoostChicken Pihole DoH Dockerbuild
|
2021-05-25 18:59:36 +00:00
|
|
|
|
|
|
|
# Controls when the action will run.
|
|
|
|
on:
|
2021-08-27 04:58:58 +00:00
|
|
|
workflow_dispatch:
|
2021-05-25 18:59:36 +00:00
|
|
|
# Triggers the workflow on push or pull request events but only for the master branch
|
2021-12-03 11:00:34 +00:00
|
|
|
schedule:
|
|
|
|
# Runs "at minute 55 past every hour" (see https://crontab.guru)
|
|
|
|
- cron: '00 12 1/15 * *'
|
|
|
|
|
2021-05-25 18:59:36 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
buildx:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
-
|
|
|
|
name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
-
|
|
|
|
name: Set up Docker Buildx
|
|
|
|
id: buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
-
|
|
|
|
name: Login to Docker Hub
|
|
|
|
uses: docker/login-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
2021-12-03 10:43:29 +00:00
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: get latest version
|
|
|
|
run: export VERSION=$(curl --silent "https://api.github.com/repos/pi-hole/docker-pi-hole/releases/latest" | jq -r '.["tag_name"]')
|
2021-12-03 11:00:34 +00:00
|
|
|
|
|
|
|
- name: docker check
|
|
|
|
run: docker pull boostchicken/pihole:$VERSION
|
2021-05-25 18:59:36 +00:00
|
|
|
-
|
|
|
|
name: build pihole
|
2021-12-03 11:08:06 +00:00
|
|
|
run: docker buildx build --platform=linux/amd64,linux/arm64 --build-arg VERSION=$VERSION run-pihole -t boostchicken/pihole:latest -t boostchicken:/pihole:$VERSION --push
|
|
|
|
|