mirror of
https://github.com/ihmily/DouyinLiveRecorder.git
synced 2026-03-22 15:39:03 +08:00
* Create .dockerignore * Create Build_docker.yml * Create docker-image.yml * Create Build_Aliyun.yml
19 lines
306 B
YAML
19 lines
306 B
YAML
name: Docker Image CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Build the Docker image
|
|
run: docker build . --file Dockerfile --tag DouyinLiveRecorder:$(date +%s)
|