28 lines
656 B
YAML
28 lines
656 B
YAML
name: Build and Deploy
|
|
on:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
paths-ignore:
|
|
- "**.md"
|
|
|
|
jobs:
|
|
build-docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Fixing Environment
|
|
run: |
|
|
echo "rc_cgroup_mode=\"unified\"" >> /etc/rc/conf
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
- name: Build
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
load: true
|
|
tags: nerdcult_frontend:latest
|
|
- name: Inspect
|
|
run: |
|
|
docker image inspect nerdcult_frontend:latest |