Skip to content

Commit

Permalink
Merge pull request #32 from aleksanderbl29/27-add-automatic-build-for…
Browse files Browse the repository at this point in the history
…-branches

27 add automatic build for branches
  • Loading branch information
aleksanderbl29 authored Nov 24, 2023
2 parents b931288 + 02170a2 commit e4d263b
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
46 changes: 46 additions & 0 deletions .github/workflows/dev-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
name: Build and publish container in development

on:
# cron job to trigger the build on any push to main
pull_request:
branches:
- main
types: [opened, synchronize, reopened]

permissions:
contents: write

jobs:
docker:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v3


- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3


- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}

- name: Get todays date
id: date
run: echo date=$(date +%Y-%m-%d) >> $GITHUB_OUTPUT

- name: Build and push
uses: docker/build-push-action@v5
with:
context: "{{defaultContext}}:pihole-unbound/"
platforms: linux/arm/v7,linux/arm64/v8,linux/amd64
push: true
tags: aleksanderbl/pihole-unbound:dev-pr-${{ github.event.number }}-${{ steps.date.outputs.date }}
1 change: 0 additions & 1 deletion pihole-unbound/VERSION

This file was deleted.

0 comments on commit e4d263b

Please sign in to comment.