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
This commit is contained in:
2025-04-16 14:07:49 -04:00
parent 5b6023218d
commit 7fc0f2aada

View File

@@ -0,0 +1,26 @@
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