Skip to content

Commit

Permalink
add github workflows to publish docker images to GHCR
Browse files Browse the repository at this point in the history
  • Loading branch information
kylecrawshaw committed Oct 25, 2024
1 parent 431e760 commit dcea065
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/docker-publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# .github/workflows/docker-publish.yml
name: Build and Publish Docker Image

on:
push:
branches:
- main # Change this to your default branch if different

permissions:
packages: write # Grant permission to write to packages (GHCR)

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Log in to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
token: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
file: fleet-argocd-plugin/Dockerfile
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/fleet-argocd-sync:${{ github.sha }}
ghcr.io/${{ github.repository_owner }}/fleet-argocd-sync:latest

0 comments on commit dcea065

Please sign in to comment.