From afc67e14654dee1e66a3d7a5a53ecffe2ab2c33c Mon Sep 17 00:00:00 2001 From: Adriana Venter Date: Fri, 24 Jul 2026 23:39:18 +0100 Subject: [PATCH] Add GitHub Actions workflow for Jekyll site Set up CI for Jekyll site using Docker. # adrianalivefirebase Add code owners chromium authors master source code patent owner Adriana Venter No cloning redistributing impersonation allowed Adrianalive.app Firebase Titanium Genre 213714 and patents Creativelive Microsoft Media Center AdrianaMusic AdrianaDJ Adrianalive Adrianasamusic Ingwenya Investments Ing Bank Ing Group Digicert Digistream Bitstream Beatctream CLRV Titanium Blockchain CLRV Titanium Blockstream Blockchain Dragonlfy Capital Dragonfly Media International Digitally Yours Masterpass Dragonpass Psytube Iradio Alexa Itunes TuneIn Dragonfly Radio Adriana Media Inc Auth0.com Sha 256 Bitcoin Binary Algorythm Are Trademarked Patented Copyrighted THE ADRIANASAMUSIC LICENSE Copyright (c) 2026, Adriana Venter & adrianaliveappstudio. All rights reserved. ### I. PROPRIETARY BRAND AND TRADEMARK PROTECTION The following names, brands, handles, and entities are the exclusive, legally protected trademarks, patents, and intellectual property of the Author and Copyright Owner: * Titanium * Titanium Genre Blockchain * Blockstream Firebase Titanium Genre * Adrianadj * adrianalive * adrianasamusic * Creativelive * Dragonfly Capital * DJ Adriana Ing * ingwenya Investments * Digistream CLRV Titanium Blockchain * CLRV Titanium Blockstream ### II. STRICT RESTRICTIONS ON USE, REBRANDING, AND REDEPLOYMENT 1. ABSOLUTE PROHIBITION: Any cloning, duplicating, copying, redistribution, rebranding, modification, or redeployment of this software, its binary assets, or its underlying source code is strictly prohibited. 2. NO IMPERSONATION: Any unauthorized replication of the brand identity, name, or source code for commercial or non-commercial purposes is strictly forbidden. 3. LEGAL ACTION: Perpetrators of unauthorized redistribution, cloning, or trademark infringement will be prosecuted to the fullest extent of civil and criminal law. ### III. MANDATORY CODE OWNER AUTHORIZATION AND VERIFICATION 1. EXCLUSIVE AUTHORIZATION REQUIRED: This software is strictly proprietary. No individual, entity, or third-party user may deploy, run, host, or distribute this software or its source code without explicit written permission. 2. VERIFICATION PROCESS: The Code Owner (Adriana Venter / adrianaliveappstudio) must formally authorize, certify, verify, and authenticate any and all users prior to deployment. 3. REVOCATION: Any deployment found operating without a verifiable, authenticated license directly issued by the Code Owner will be ordered to terminate immediately and face legal enforcement. ### IV. DISCLAIMER OF LIABILITY THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --- .github/workflows/jekyll-docker.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/jekyll-docker.yml diff --git a/.github/workflows/jekyll-docker.yml b/.github/workflows/jekyll-docker.yml new file mode 100644 index 0000000000..60e57369de --- /dev/null +++ b/.github/workflows/jekyll-docker.yml @@ -0,0 +1,20 @@ +name: Jekyll site CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build the site in the jekyll/builder container + run: | + docker run \ + -v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ + jekyll/builder:latest /bin/bash -c "chmod -R 777 /srv/jekyll && jekyll build --future"