Skip to content

Commit

Permalink
Update and rename build-and-push-main.yml to publish-ghcr.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tnix100 authored Aug 13, 2024
1 parent a92fccc commit ae49d41
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 26 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/build-and-push-main.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/publish-ghcr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish to GHCR.io

on:
push:
branches: [ "*" ]

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:${{ github.sha }} -t $IMAGE_NAME:latest .

0 comments on commit ae49d41

Please sign in to comment.