Skip to content

Update workflow name #2

Update workflow name

Update workflow name #2

Workflow file for this run

name: cppdevel_cbuild
on:
workflow_dispatch:
push:
paths:
- containers/cppdevel/**
- .github/workflows/cppdevel.yml # Self-trigger
env:
REGISTRY: ghcr.io
IMAGE_NAME: bounverif/cppdevel
VERSION: latest
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to the registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: containers/cppdevel
build-args: "VERSION=${{ env.VERSION }}"
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }}
push: true
cache-from: type=gha
cache-to: type=gha,mode=max