Skip to content

chore: fix runtime image #57

chore: fix runtime image

chore: fix runtime image #57

Workflow file for this run

name: runtime
on:
push:
branches:
- build
- master
- dev
paths:
- "pyproject.toml"
- "deploy/Dockerfile.RUNTIME"
workflow_dispatch:
jobs:
build-runtime:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: build runtime image
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: ehco1996/django-sspanel
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tags: "runtime"
dockerfile: deploy/Dockerfile.RUNTIME
- name: build nginx image
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: ehco1996/django-sspanel
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tags: "nginx"
dockerfile: deploy/Dockerfile.NGINX