mirror of
https://gitee.com/LongbowEnterprise/BootstrapBlazor.git
synced 2024-12-05 05:29:47 +08:00
7825ef93c8
* chore: update file * chore: update * chore: update * chore: update ci file * chore: update yml file * chore: 更新脚本 * chore: update yml file * chore: update docker file path * chore: update docker image
26 lines
552 B
YAML
26 lines
552 B
YAML
name: Docker Image CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev-dockerfile
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Build and push Docker images
|
|
uses: docker/build-push-action@v2.7.0
|
|
with:
|
|
file: src/BootstrapBlazor.Server/Dockerfile
|
|
push: true
|
|
tags: argozhang/blazor:latest
|