-
Notifications
You must be signed in to change notification settings - Fork 963
37 lines (35 loc) · 1005 Bytes
/
code.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
name: code
on:
push:
branches:
- master
- dev
- debug-*
paths:
- "apps/**"
- "configs/**"
- "templates/**"
workflow_dispatch:
jobs:
build-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: build code image
uses: elgohr/Publish-Docker-Github-Action@master
if: github.ref == 'refs/heads/dev'
with:
name: ehco1996/django-sspanel
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tags: "latest,code"
dockerfile: deploy/Dockerfile.CODE
- name: build debug code image
uses: elgohr/Publish-Docker-Github-Action@master
if: github.ref == 'refs/heads/debug'*
with:
name: ehco1996/django-sspanel
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tags: "debug"
dockerfile: deploy/Dockerfile.DEBUG-CODE