Files
yaflay.ru/.github/workflows/docker-image.yml
2023-10-19 20:58:54 +03:00

19 lines
348 B
YAML

name: Docker Image CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build . --file Dockerfile --tag yaflay_ru:$(date +%s) && docker push ghcr.io/yaflay/yaflay_ru:latest