all repos — elgit @ 4c3a2d8d61f1f89cf2f6b9d984cdaf2093184e8f

fork of legit: web frontend for git, written in go

remove github workflow
Alan Pearce alan@alanpearce.eu
Sat, 29 Mar 2025 20:54:20 +0100
commit

4c3a2d8d61f1f89cf2f6b9d984cdaf2093184e8f

parent

5ae6e6b8ba5bad8b7a981ac0db5f3974806be935

1 files changed, 0 insertions(+), 52 deletions(-)

jump to
D .github/workflows/docker.yaml
@@ -1,52 +0,0 @@-name: build and push docker image
-
-on:
-  push:
-    branches: [master]
-    tags: ["*"]
-
-env:
-  REGISTRY: ghcr.io
-  IMAGE_NAME: ${{ github.repository }}
-
-jobs:
-  build:
-    runs-on: ubuntu-latest
-    permissions:
-      contents: read
-      packages: write
-      attestations: write
-      id-token: write
-
-    steps:
-      - name: Check out code
-        uses: actions/checkout@v4
-
-      - name: Copy Dockerfile to .
-        run: cp ./contrib/Dockerfile ./Dockerfile
-
-      - name: Set up Docker Buildx
-        uses: docker/setup-buildx-action@v3
-
-      - name: Login to GitHub Container Registry
-        uses: docker/login-action@v3
-        with:
-          registry: ghcr.io
-          username: ${{ github.repository_owner }}
-          password: ${{ secrets.GITHUB_TOKEN }}
-
-      - name: Docker meta
-        id: meta
-        uses: docker/metadata-action@v5
-        with:
-          images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
-
-      - name: Build and push Docker image
-        uses: docker/build-push-action@v6
-        with:
-          context: .
-          tags: ${{ steps.meta.outputs.tags }}
-          labels: ${{ steps.meta.outputs.labels }}
-          push: true
-          build-args: |
-            BUILDKIT_INLINE_CACHE=1