You've already forked reloading-manager
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
27 lines
697 B
YAML
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
|