Skip to content

feat: add credits, add paths-ignore #2

feat: add credits, add paths-ignore

feat: add credits, add paths-ignore #2

name: Build Docker Image
on:
workflow_dispatch:
push:
branches:
- "main"
paths-ignore:
- "config/**"
- ".env.example"
- "server.conf.example"
- "README.md"
jobs:
build-docker-img:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
# - name: Login to DockerHub
# uses: docker/login-action@v2
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64
push: true
tags: |
ghcr.io/jackblk/battlebit-server-docker:latest