nhentai/.github/workflows/docker-image.yml
2023-02-06 07:16:42 +08:00

19 lines
312 B
YAML

name: Docker Image CI
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: |
docker build . --file Dockerfile --tag ricterz/nhentai:latest
docker push ricterz/nhentai:latest