From 20b1802156fe739830a93a8aff6939997ac5c0fb Mon Sep 17 00:00:00 2001 From: ember Date: Fri, 27 Mar 2026 08:44:38 +0000 Subject: [PATCH] sync: remove stale fluffychat-build.yaml --- .forgejo/workflows/fluffychat-build.yaml | 33 ------------------------ 1 file changed, 33 deletions(-) delete mode 100644 .forgejo/workflows/fluffychat-build.yaml diff --git a/.forgejo/workflows/fluffychat-build.yaml b/.forgejo/workflows/fluffychat-build.yaml deleted file mode 100644 index 4888657..0000000 --- a/.forgejo/workflows/fluffychat-build.yaml +++ /dev/null @@ -1,33 +0,0 @@ -name: Build and Push FluffyChat - -on: - workflow_dispatch: - repository_dispatch: - types: [fluffychat-push] - -jobs: - build-and-push: - runs-on: ubuntu-latest - container: - image: docker:cli - steps: - - name: Install git - run: apk add --no-cache git - - - name: Checkout FluffyChat - run: | - REF=${{ github.event.client_payload.ref || 'deployment' }} - git clone --depth 1 --branch "${REF##refs/heads/}" \ - http://forgejo.tooling.svc.cluster.local:3000/ember/fluffychat.git . - - - name: Build container image - run: | - SHA=${{ github.event.client_payload.sha || 'latest' }} - docker build -t 10.70.69.22:30500/ember/fluffychat:latest \ - -t 10.70.69.22:30500/ember/fluffychat:${SHA} . - - - name: Push to Zot - run: | - SHA=${{ github.event.client_payload.sha || 'latest' }} - docker push 10.70.69.22:30500/ember/fluffychat:latest - docker push 10.70.69.22:30500/ember/fluffychat:${SHA}