Skip to content

chore: Update Docker build-push-action to version 3 in GitHub Actions… #2

chore: Update Docker build-push-action to version 3 in GitHub Actions…

chore: Update Docker build-push-action to version 3 in GitHub Actions… #2

name: Build and Push Docker Image to GitHub Packages
on:
push:
branches:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Log in to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
push: true
tags: ghcr.io/heavybullets8/new-plex-dubs:latest