Skip to content

Build Builder Image #50

Build Builder Image

Build Builder Image #50

Workflow file for this run

name: Build Builder Image
on:
push:
branches: ['main']
paths:
- 'docker/Dockerfile'
- 'vuru/**'
workflow_dispatch:
schedule:
- cron: '0 0 * * 0' # Weekly
env:
REGISTRY: ghcr.io
IMAGE_NAME: vup-linux/vup-builder
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Log in to the Container registry
uses: docker/login-action@v4
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=sha
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: docker/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}