Skip to content

Build and Push WGDashboard Docker Dev Image (Daily) #13

Build and Push WGDashboard Docker Dev Image (Daily)

Build and Push WGDashboard Docker Dev Image (Daily) #13

name: Build and Push WGDashboard Docker Dev Image (Daily)
on:
schedule:
- cron: "0 0 * * *" # Daily at midnight (UTC)
workflow_dispatch: # Allows manual triggering of the workflow
inputs:
trigger-build:
description: 'Trigger a manual build and push'
default: 'true'
jobs:
build_and_push_multiarch:
runs-on: ubuntu-22.04
timeout-minutes: 42 # Job will timeout after 42 minutes
steps:
# Step 1: Check out the repository code from the target branch
- name: Checkout code from target branch
uses: actions/checkout@v4
with:
ref: 'refs/heads/amneziawg' # Replace 'target-branch' with your desired branch name
# Step 2: Log in to Docker Hub using secrets
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# Step 3: Create and use a new builder with multi-platform support
- name: Set up Docker Buildx (Multi-Arch Builder)
uses: docker/setup-buildx-action@v3
with:
driver-opts: image=moby/buildkit:master
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7
# Step 4: Set up QEMU (for multi-platform emulation)
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7
# Step 5: Build and Push Docker Image with multi-platform support (No cache)
- name: Build and Push WGDashboard Docker Dev (Multi-Arch)
uses: docker/build-push-action@v6
with:
context: WG-Dash/ # Path to Dockerfile in repository
push: true # Push image after build
tags: noxcis/wg-dashboard:terra-fuego-beta # Tag for all platforms
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7 # Platforms to build for
no-cache: true # Disable caching to force a fresh build