9 Commits

Author SHA1 Message Date
Brooke 99a62a20ea change auth url
Build And Publish Container / build-latest (push) Successful in 1m57s
2026-07-17 18:33:29 -04:00
Brooke 77a917c0dd remove non relevant socket proxy entry
Build And Publish Container / build-latest (push) Failing after 14s
2026-07-17 18:32:43 -04:00
Brooke dbd20fd75a forgor it's gitea not forgejo
Build And Publish Container / build-latest (push) Failing after 38s
2026-07-17 18:03:37 -04:00
Brooke aff1389e38 build on push 2026-07-17 17:59:36 -04:00
Brooke b3e3dd1a82 fetch tags 2026-07-17 17:51:49 -04:00
Brooke e9fcc8bd0b init forgejo workflow 2026-07-17 17:44:02 -04:00
sixsmith fc4535aafb add renovate.json 2026-07-17 15:39:08 -04:00
sixsmith e93281f4eb fix 2026-06-19 19:18:24 -04:00
sixsmith 79ad1c450a submodule https 2026-06-19 19:13:02 -04:00
3 changed files with 55 additions and 1 deletions
+39
View File
@@ -0,0 +1,39 @@
name: Build And Publish Container
on:
workflow_dispatch:
push:
branches:
- '*'
jobs:
build-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
submodules: 'recursive'
fetch-depth: 0
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0
with:
platforms: linux/amd64
- name: Login to Self-Hosted Registry
uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0
with:
registry: git.coopcloud.tech
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Build and Push Extended Version
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0
with:
builder: ${{ steps.buildx.outputs.name }}
context: ./
file: ./Dockerfile
platforms: linux/amd64
push: true
tags: git.coopcloud.tech/toolshed/coop-cloud-webui:nightly
+1 -1
View File
@@ -1,3 +1,3 @@
[submodule "web"]
path = web
url = ssh://git@git.coopcloud.tech:2222/toolshed/coop-cloud-front.git
url = https://git.coopcloud.tech/toolshed/coop-cloud-front.git
+15
View File
@@ -0,0 +1,15 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"packageRules": [
{
"matchDatasources": [
"docker"
],
"pinDigests": true
}
]
}