Skip to content

Merge pull request #9 from mi3lix9/develop #1

Merge pull request #9 from mi3lix9/develop

Merge pull request #9 from mi3lix9/develop #1

name: Build and Push to GHCR
on:
push:
branches:
- main
jobs:
build_and_push:
permissions:
packages: write
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build and Push the Image to GHCR
run: |
docker login ghcr.io -u ${{ github.actor }} \
-p ${{ secrets.GITHUB_TOKEN }}
docker build -t ghcr.io/${{ github.repository }}:latest .
docker push ghcr.io/${{ github.repository }}:latest
# name: Build and Push Docker Image
# on:
# push:
# branches:
# - main
# jobs:
# build:
# runs-on: ubuntu-latest
# permissions:
# packages: write
# contents: read
# steps:
# - name: Checkout repository
# uses: actions/checkout@v2
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v2
# - name: Log in to GitHub Container Registry
# uses: docker/login-action@v2
# with:
# registry: ghcr.io
# username: ${{ github.actor }}
# password: ${{ secrets.GITHUB_TOKEN }}
# - name: Build and push Docker image
# uses: docker/build-push-action@v4
# with:
# context: .
# push: true
# tags: ghcr.io/${{ github.repository }}:latest