You've already forked reloading-manager
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:
26
.gitea/workflows/build.yml
Normal file
26
.gitea/workflows/build.yml
Normal 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
|
||||
Reference in New Issue
Block a user