-
-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (42 loc) · 1.03 KB
/
docker_dev.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: docker_dev
on:
push:
branches:
- master
- release/*
paths:
- '**.rs'
- '**/Cargo.*'
- '.github/workflows/docker_dev.yml'
- '**.pi'
- '**/Kagari.*'
- 'codecov.yml'
jobs:
artifacts:
name: docker_dev
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to ali registry
uses: docker/login-action@v3
with:
registry: registry.cn-hangzhou.aliyuncs.com
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
file: ./Dockerfile.dev
tags: registry.cn-hangzhou.aliyuncs.com/pivot_lang/pivot_lang_dev:latest