mirror of
https://gitee.com/LongbowEnterprise/BootstrapBlazor.git
synced 2024-12-04 04:59:38 +08:00
7218fb3319
* chore: 更新自动化脚本 * refactor: 更新样式 * doc: 更新示例 * test: 增加单元测试 * chore: bump version 8.1.10-beta02
26 lines
556 B
YAML
26 lines
556 B
YAML
name: Build docker image
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev-dockerfile
|
|
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- 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
|