Files
reloading-manager/.gitea/workflows/build.yml
Ron Rise 7fc0f2aada Squashed commit of the following:
commit 2f2f35b09dbcc430111d4c626d79b92fefb38732
Author: Ron Rise <ron@siteworxpro.com>
Date:   Wed Apr 16 13:58:35 2025 -0400

    Livin' off borrowed time, the clock ticks faster
2025-04-16 14:07:49 -04:00

27 lines
697 B
YAML

on:
push:
branches:
- master
jobs:
BuildBackend:
name: Build Backend
runs-on: ubuntu-latest
steps:
- name: Add Siteworx CA
run: |
apt update && apt install -yq ca-certificates curl
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
update-ca-certificates
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Build Container
uses: docker/build-push-action@v2
with:
context: ./backend
file: ./backend/Dockerfile
push: false
tags: siteworxpro/backend:latest