emacs-config/.github/workflows/buildimage.yml

34 lines
861 B
YAML

name: "Build Image"
on:
push:
branches: master
paths:
- ".github/workflows/Dockerfile"
jobs:
build-image:
runs-on: ubuntu-22.04 # change to -latest when possible
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to the GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Push to Docker Hub
uses: docker/build-push-action@v5
with:
context: .github/workflows
tags: ghcr.io/tecosaur/emacs-config:latest
push: true
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}