Skip to content

refactor: Remove unused GitHub Actions workflows #1

refactor: Remove unused GitHub Actions workflows

refactor: Remove unused GitHub Actions workflows #1

name: Docker Image CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
IMAGE_NAME: electron-react-boilerplate
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.PAT }}
- uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:latest