Skip to content

Commit

Permalink
Create publish-latest-ghcr.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tnix100 authored Aug 13, 2024
1 parent ae49d41 commit f186f61
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/publish-latest-ghcr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish latest to GHCR.io

on:
push:
branches: [ "main" ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

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

- name: Login to GHCR.io
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin

- name: Build and push images
run: |
IMAGE_NAME=ghcr.io/${{ github.repository }}
docker buildx build --push -t $IMAGE_NAME:latest .

0 comments on commit f186f61

Please sign in to comment.