21 lines
425 B
YAML
21 lines
425 B
YAML
name: Docker Build and Release Upload
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: build database
|
|
run: |
|
|
docker build -t mistox-sql ./database
|
|
|
|
- name: build server
|
|
run: |
|
|
docker build --build-arg BASE_URL=https://mistox.com -t mistox-website . |