Skip to content

Commit

Permalink
Merge pull request #545 from allthingslinux/tess-docker-ghcr
Browse files Browse the repository at this point in the history
Create docker-image.yml
  • Loading branch information
wlinator authored Sep 11, 2024
2 parents 962d98d + 8ba6eaf commit de9667a
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Create and Publish Docker Image CI


on:
push:
branches: [ "main" ]
pull_request:

jobs:

docker:

runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/allthingslinux/tux
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=ref,event=pr
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit de9667a

Please sign in to comment.