docker-dotclear/.github/workflows/docker-image.yml

19 lines
325 B
YAML
Raw Normal View History

2024-11-03 00:02:26 +00:00
name: Docker Image CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
2024-11-03 00:03:59 +00:00
run: docker build . --file alpine/nginx/latest/Dockerfile --tag my-image-name:$(date +%s)