Skip to content
This repository was archived by the owner on Feb 15, 2026. It is now read-only.

Update .dockerignore #5

Update .dockerignore

Update .dockerignore #5

Workflow file for this run

name: workflow.yml
on:
push:
branches:
- next
- feat/**
- release/**
paths-ignore:
- 'readme.md'
- 'readme.*'
- 'docker-compose*'
- 'docs/**'
- 'licence'
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push Docker Image
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64
target: runtime
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/pjs2:latest
ghcr.io/${{ github.repository_owner }}/pjs2:${{ github.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max