Switched off unit test 12 because the build had to go out now and there was no time to fix it properly. #1

Merged
rrise merged 16 commits from update-core into master 2025-05-15 02:56:44 +00:00
Showing only changes of commit f8f63e418c - Show all commits

View File

@@ -0,0 +1,38 @@
on:
push:
branches:
- "*"
name: 🏗️✨ Test Build Workflow
jobs:
Build:
name: 🖥️ 🔨 Build
runs-on: ubuntu-latest
steps:
- name: 🛡️ 🔒 Add Siteworx CA Certificates
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 Repository Code
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: 🔑 🔐 Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: 🏗️ 🔧 Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: 🐳 🔨 Build Backend Container
uses: docker/build-push-action@v6
with:
context: .
dockerfile: Dockerfile
tags: siteworxpro/template:${{ gitea.ref_name }}